From 5efb019d8bdc593b3c1a0b57d615b170c7dab02a Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Wed, 1 Mar 2017 06:10:06 -0500 Subject: Add C++ nullptr support (Issue 383) --- gfpcrypt.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gfpcrypt.h') diff --git a/gfpcrypt.h b/gfpcrypt.h index 7d25490e..75e99705 100644 --- a/gfpcrypt.h +++ b/gfpcrypt.h @@ -811,7 +811,7 @@ public: void SymmetricEncrypt(RandomNumberGenerator &rng, const byte *key, const byte *plaintext, size_t plaintextLength, byte *ciphertext, const NameValuePairs ¶meters) const { CRYPTOPP_UNUSED(rng); - const byte *cipherKey = NULL, *macKey = NULL; + const byte *cipherKey = NULLPTR, *macKey = NULLPTR; if (DHAES_MODE) { macKey = key; -- cgit v1.2.1