make function signature match declaration

This commit is contained in:
JacobBarthelmeh 2024-05-29 17:00:22 -06:00
parent 200f309e0e
commit 9673b3f218

View File

@ -14091,14 +14091,14 @@ const char* wolfSSL_get_cipher_name(WOLFSSL* ssl)
return wolfSSL_get_cipher_name_internal(ssl);
}
const char* wolfSSL_get_cipher_name_from_suite(const byte cipherSuite0,
const byte cipherSuite)
const char* wolfSSL_get_cipher_name_from_suite(byte cipherSuite0,
byte cipherSuite)
{
return GetCipherNameInternal(cipherSuite0, cipherSuite);
}
const char* wolfSSL_get_cipher_name_iana_from_suite(const byte cipherSuite0,
const byte cipherSuite)
const char* wolfSSL_get_cipher_name_iana_from_suite(byte cipherSuite0,
byte cipherSuite)
{
return GetCipherNameIana(cipherSuite0, cipherSuite);
}