diff options
author | Jack Lloyd <[email protected]> | 2017-03-29 13:02:12 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-03-29 13:02:12 -0400 |
commit | 379936037cca51ed247ac3e9ce27e01ff3ac8398 (patch) | |
tree | a916a34cb429e9067120c5354f83ce556cd7baad | |
parent | f08260c3e2c1b2631f2297af0c57b7a43911379f (diff) |
Build fix
-rw-r--r-- | src/tests/test_rsa.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/test_rsa.cpp b/src/tests/test_rsa.cpp index 2078a399e..80a0ca30b 100644 --- a/src/tests/test_rsa.cpp +++ b/src/tests/test_rsa.cpp @@ -207,7 +207,7 @@ class RSA_Blinding_Tests : public Test // one more decryption should trigger a blinder reinitialization result.test_throws("RSA blinding reinit", "Test error Fixed output RNG ran out of bytes, test bug?", - [&decryptor,&encryptor]() + [&decryptor,&encryptor,&null_rng]() { std::vector<uint8_t> ciphertext = encryptor.encrypt(std::vector<uint8_t>(16, 5), null_rng); decryptor.decrypt(ciphertext); |