toobee

0 Reputation

2 Badges

14 years, 114 days

MaplePrimes Activity


These are questions asked by toobee

Hi,

I tried to implement an small example sheet for using the RSA algorithmen with small numbers. Unfortunatly, I get confused by my own program and have difficulties to figure out what I am doing wrong. My message can be decoded with both keys, the public and private key what is obviously not correct.

below is my code with some comments:

restart: with (numtheory):
p := 13; # my first prime number
q := 23; # my second one

n := p*q;

Page 1 of 1