mirror of
https://github.com/AGWA/git-crypt.git
synced 2026-01-02 00:00:12 -08:00
Switch from NULL to nullptr
This commit is contained in:
@@ -83,7 +83,7 @@ Hmac_sha1_state::Hmac_sha1_state (const unsigned char* key, size_t key_len)
|
||||
{
|
||||
|
||||
impl->ctx = HMAC_CTX_new();
|
||||
HMAC_Init_ex(impl->ctx, key, key_len, EVP_sha1(), NULL);
|
||||
HMAC_Init_ex(impl->ctx, key, key_len, EVP_sha1(), nullptr);
|
||||
}
|
||||
|
||||
Hmac_sha1_state::~Hmac_sha1_state ()
|
||||
|
||||
Reference in New Issue
Block a user