Page 1 of 1

How to RSA Modulus & Exponent works in javacard if both are given in java string format

Posted: Wed Jan 08, 2020 2:37 am
by jayasingh93
How to RSA Modulus & Exponent works in javacard if both are given in java string format(RSA 1024 bit)
String mod = “90852423964057822753848621261403370088993357129733218801087462576099980287978042564895945874292510348927639029935586865556973426497673013741266524150720003571724086514649223562314220334081241743303999793127341482072785546147464092758619893413473778162085500548213288954853005622547623956388880237500263919103”
String exp ="65537";

Re: How to RSA Modulus & Exponent works in javacard if both are given in java string format

Posted: Wed Mar 11, 2020 2:36 am
by DaHuFa
Cipher = message ^e (mod n);

Re: How to RSA Modulus & Exponent works in javacard if both are given in java string format

Posted: Wed Mar 11, 2020 2:37 am
by DaHuFa
message must smaller than n

Re: How to RSA Modulus & Exponent works in javacard if both are given in java string format

Posted: Mon Mar 23, 2020 5:43 am
by Manish8759
Very helpful information.. Thank you.

Re: How to RSA Modulus & Exponent works in javacard if both are given in java string format

Posted: Thu Apr 02, 2020 10:03 am
by neha31
Discussion really helped..!!!