We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 61fea76 + 9673b3f commit 107c10dCopy full SHA for 107c10d
1 file changed
src/ssl.c
@@ -14091,14 +14091,14 @@ const char* wolfSSL_get_cipher_name(WOLFSSL* ssl)
14091
return wolfSSL_get_cipher_name_internal(ssl);
14092
}
14093
14094
-const char* wolfSSL_get_cipher_name_from_suite(const byte cipherSuite0,
14095
- const byte cipherSuite)
+const char* wolfSSL_get_cipher_name_from_suite(byte cipherSuite0,
+ byte cipherSuite)
14096
{
14097
return GetCipherNameInternal(cipherSuite0, cipherSuite);
14098
14099
14100
-const char* wolfSSL_get_cipher_name_iana_from_suite(const byte cipherSuite0,
14101
+const char* wolfSSL_get_cipher_name_iana_from_suite(byte cipherSuite0,
14102
14103
return GetCipherNameIana(cipherSuite0, cipherSuite);
14104
0 commit comments