File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " @tls/enum" ,
3- "version" : " 0.2.3 " ,
3+ "version" : " 0.2.4 " ,
44 "exports" : " ./src/mod.ts" ,
55 "publish" : {
66 "exclude" : [" dist/" ]
Original file line number Diff line number Diff line change @@ -37,7 +37,12 @@ export class SignatureScheme extends Enum {
3737 static RSA_PKCS1_SHA1 = new SignatureScheme ( 'RSA_PKCS1_SHA1' , 0x0201 ) ;
3838 static ECDSA_SHA1 = new SignatureScheme ( 'ECDSA_SHA1' , 0x0203 ) ;
3939
40- /* Reserved Code Points
40+ /* Reserved Code Points */
41+ static dsa_sha1_RESERVED = new SignatureScheme ( 'dsa_sha1_RESERVED' , 0x0202 ) ;
42+ static dsa_sha256_RESERVED = new SignatureScheme ( 'dsa_sha256_RESERVED' , 0x0402 ) ;
43+ static dsa_sha384_RESERVED = new SignatureScheme ( 'dsa_sha384_RESERVED' , 0x0502 ) ;
44+ static dsa_sha512_RESERVED = new SignatureScheme ( 'dsa_sha512_RESERVED' , 0x0602 )
45+ /*
4146 static PRIVATE_USE_START = new SignatureScheme('PRIVATE_USE_START', 0xFE00);
4247 static PRIVATE_USE_END = new SignatureScheme('PRIVATE_USE_END', 0xFFFF);
4348 static PRIVATE_USE = new SignatureScheme('PRIVATE_USE', 0xFFFF);
You can’t perform that action at this time.
0 commit comments