make function signature match declaration
This commit is contained in:
parent
200f309e0e
commit
9673b3f218
@ -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);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user