File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
TLS-Core/src/main/java/de/rub/nds/tlsattacker/core Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -174,6 +174,7 @@ private CertificateKeyType getPublicKeyType(Certificate cert) {
174174 case "1.2.840.113549.1.1.1" :
175175 return CertificateKeyType .RSA ;
176176 case "1.2.840.10045.2.1" :
177+ case "1.2.840.10045.4.3.4" :
177178 return CertificateKeyType .ECDSA ;
178179 case "1.2.840.113549.1.3.1" :
179180 return CertificateKeyType .DH ;
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ public enum ClientCertificateType {
2525 FORTEZZA_DMS_RESERVED ((byte ) 20 ),
2626 GOSTR34101994 ((byte ) 21 ),
2727 GOSTR34102001 ((byte ) 22 ),
28- ECDSA_SIGN ((byte ) 64 ), //TODO Implement these
28+ ECDSA_SIGN ((byte ) 64 ), // TODO Implement these
2929 RSA_FIXED_ECDH ((byte ) 65 ),
3030 ECDSA_FIXED_ECDH ((byte ) 66 ),
3131 GOST_SIGN256 ((byte ) 66 ),
@@ -62,6 +62,6 @@ public byte getValue() {
6262 }
6363
6464 public byte [] getArrayValue () {
65- return new byte []{ value };
65+ return new byte [] { value };
6666 }
6767}
You can’t perform that action at this time.
0 commit comments