This commit is contained in:
2021-08-11 14:06:42 +08:00
parent d6f0abf28d
commit bd17e8a713
3 changed files with 84 additions and 10 deletions
+31
View File
@@ -0,0 +1,31 @@
<?php
namespace Kiri\Jwt;
class ASE extends \SplEnum
{
const AES_128_ECB = 'aes-128-ecb';
const AES_192_ECB = 'aes-192-ecb';
const AES_256_ECB = 'aes-256-ecb';
const ARIA_128_ECB = 'aria-128-ecb';
const ARIA_192_ECB = 'aria-192-ecb';
const ARIA_256_ECB = 'aria-256-ecb';
const BF_ECB = 'bf-ecb';
const CAMELLIA_128_ECB = 'camellia-128-ecb';
const CAMELLIA_192_ECB = 'camellia-192-ecb';
const CAMELLIA_256_ECB = 'camellia-256-ecb';
const CAST5_ECB = 'cast5-ecb';
const DES_ECB = 'des-ecb';
const DES_EDE = 'des-ede';
const DES_EDE3 = 'des-ede3';
const ID_SMIME_ALG_CMS3DESWRAP = 'id-smime-alg-CMS3DESwrap';
const IDEA_ECB = 'idea-ecb';
const RC2_ECB = 'rc2-ecb';
const RC4 = 'rc4';
const RC4_40 = 'rc4-40';
const RC4_HMAC_MD5 = 'rc4-hmac-md5';
const SEED_ECB = 'seed-ecb';
const SM4_ECB = 'sm4-ecb';
}