File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -100,6 +100,7 @@ extern struct ScheduledJob* currentJob; /* Defined in schedule.c */
100100/* 2.16.0.0 = Updated TPM for default passkey */
101101/* 2.16.0.1 = Updated Makefile for OpenSSL v3.x */
102102/* 2.16.1.0 = Modified agent to not send GUID capabilities. Compile bug fix */
103- #define AGENT_VERSION 0x0002001000010000
103+ /* 2.17.0.0 = Modified agent to accept ECDSA as well as ECC for a keytype */
104+ #define AGENT_VERSION 0x0002001001000000
104105
105106#endif /* AGENT_H_ */
Original file line number Diff line number Diff line change @@ -80,7 +80,8 @@ bool generate_keypair(const char* keyType, int keySize)
8080 bResult = ssl_generate_rsa_keypair (keySize );
8181 #endif
8282 }
83- else if (strcasecmp (keyType , "ECC" ) == 0 )
83+ else if (( strcasecmp (keyType , "ECC" ) == 0 ) ||
84+ ( strcasecmp (keyType , "ECDSA" ) == 0 ))
8485 {
8586#if defined(__TPM__ )
8687 log_error ("%s::%s(%d) : Error, SLB9670 with tpm2tss engine does "
You can’t perform that action at this time.
0 commit comments