コード例 #1
0
ファイル: AesCtr128.php プロジェクト: AlexanderKri/joom-upd
 /**
  * Constructs the encapsulation handler object
  */
 function __construct()
 {
     parent::__construct(2, 'ENCAPSULATION_AESCTR128', 'Data in AES-128 stream (CTR) mode encrypted JSON');
 }
コード例 #2
0
ファイル: AesCbc128.php プロジェクト: AlexanderKri/joom-upd
 /**
  * Constructs the encapsulation handler object
  */
 function __construct()
 {
     parent::__construct(4, 'ENCAPSULATION_AESCBC128', ' Data in AES-128 standard (CBC) mode encrypted JSON');
 }
コード例 #3
0
ファイル: AesCbc256.php プロジェクト: AlexanderKri/joom-upd
 /**
  * Constructs the encapsulation handler object
  */
 function __construct()
 {
     parent::__construct(5, 'ENCAPSULATION_AESCBC256', ' Data in AES-256 standard (CBC) mode encrypted JSON');
 }
コード例 #4
0
ファイル: AesCtr256.php プロジェクト: AlexanderKri/joom-upd
 /**
  * Constructs the encapsulation handler object
  */
 function __construct()
 {
     parent::__construct(3, 'ENCAPSULATION_AESCTR256', 'Data in AES-256 stream (CTR) mode encrypted JSON');
 }