From f49e2058ad2c6d7eedded27fa41bd30405db5aaa Mon Sep 17 00:00:00 2001 From: tomsmeding Date: Sat, 8 Oct 2016 11:56:47 +0200 Subject: Make parameter order a bit more consistent --- rsa.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'rsa.cpp') diff --git a/rsa.cpp b/rsa.cpp index b6ad5ed..cfa1fee 100644 --- a/rsa.cpp +++ b/rsa.cpp @@ -10,12 +10,14 @@ using namespace std; namespace RSA{ - Bigint encrypt(const PublicKey &pubkey,Bigint msg){ + Bigint encrypt(Bigint msg,const PublicKey &pubkey){ + // cerr<<"msg="<