mirror of
https://github.com/openssl/openssl.git
synced 2025-04-06 20:20:50 +08:00
const correctness: make HMAC_size() take a const *
CLA: none; trivial Signed-off-by: Kurt Roeckx <kurt@roeckx.be> Reviewed-by: Rich Salz <rsalz@openssl.org> GH: #1070
This commit is contained in:
parent
d139723b0e
commit
2194351fda
@ -164,7 +164,7 @@ int HMAC_Final(HMAC_CTX *ctx, unsigned char *md, unsigned int *len)
|
||||
return 0;
|
||||
}
|
||||
|
||||
size_t HMAC_size(HMAC_CTX *ctx)
|
||||
size_t HMAC_size(const HMAC_CTX *ctx)
|
||||
{
|
||||
return EVP_MD_size((ctx)->md);
|
||||
}
|
||||
|
@ -67,7 +67,7 @@
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
size_t HMAC_size(HMAC_CTX *e);
|
||||
size_t HMAC_size(const HMAC_CTX *e);
|
||||
HMAC_CTX *HMAC_CTX_new(void);
|
||||
int HMAC_CTX_reset(HMAC_CTX *ctx);
|
||||
void HMAC_CTX_free(HMAC_CTX *ctx);
|
||||
|
Loading…
x
Reference in New Issue
Block a user