diff options
Diffstat (limited to 'rsa.cpp')
-rw-r--r-- | rsa.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -11,8 +11,6 @@ using namespace std; namespace RSA{ Bigint encrypt(Bigint msg,const PublicKey &pubkey){ - // cerr<<"msg="<<msg<<endl; - // cerr<<"mod="<<pubkey.mod<<endl; assert(msg>1&&msg<pubkey.mod); return expmod(msg,pubkey.exp,pubkey.mod); } |