aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2015-12-26 22:09:43 -0500
committerJack Lloyd <[email protected]>2015-12-26 22:09:43 -0500
commitca69fd0c16cc2c52d140473e06dfb266e5602769 (patch)
treecdf214d075e39cecee18451da6671c084e6191fd
parentfce8f2149757b6b234d89685e58db79ade27040a (diff)
Remove debug prints
-rw-r--r--src/lib/pubkey/rsa/rsa.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/lib/pubkey/rsa/rsa.cpp b/src/lib/pubkey/rsa/rsa.cpp
index d18843315..57fab94c5 100644
--- a/src/lib/pubkey/rsa/rsa.cpp
+++ b/src/lib/pubkey/rsa/rsa.cpp
@@ -13,8 +13,6 @@
#include <botan/reducer.h>
#include <future>
-#include <iostream>
-
namespace Botan {
/*
@@ -274,9 +272,7 @@ class RSA_KEM_Encryption_Operation : public PK_Ops::KEM_Encryption_with_KDF,
Botan::RandomNumberGenerator& rng) override
{
const BigInt r = BigInt::random_integer(rng, 1, get_n());
- std::cout << "R = " << r << "\n";
const BigInt c = public_op(r);
- std::cout << "C0 = " << c << "\n";
out_encapsulated_key = BigInt::encode_locked(c);
raw_shared_key = BigInt::encode_locked(r);