show/hide this revision's text 2 added 1448 characters in body

Update: Since you didn't give me 20 samples to run an experiment, I had to generate them myself. With the following samples

m = 10001621865  c = 31116156015m = 10001621866  c = 33031668326m = 10001621867  c = 37351399313m = 10001621868  c = 6071714212m = 10001621869  c = 1188523761m = 10001621870  c = 18341011998m = 10001621871  c = 7620400191m = 10001621872  c = 36106912203m = 10001621873  c = 37615263725m = 10001621874  c = 7795237418m = 10001621875  c = 34774459868m = 10001621876  c = 4555747045m = 10001621877  c = 33123599635m = 10001621878  c = 34836418207m = 10001621879  c = 33962453633m = 10001621880  c = 6258371439m = 10001621881  c = 7500991556m = 10001621882  c = 5071836635m = 10001621883  c = 911495880m = 10001621884  c = 39558568485

as input, the algorithm described above finds the factors 201821 and 206153 in 20ms. As described this does not need to know e, although your choice of e=65537 is easy to guess and can be exploited as well.

The strength of RSA is that it is based on the difficulty of factoring large integers. Here you remove this difficulty and what remains are all the weaknesses (i.e. mathematical relations) of RSA. Building a block cipher based on RSA is a horrible idea. I really don't see why you don't want to use a Luby-Rackoff construction as I proposed earlier.

show/hide this revision's text 1

An attacker can guess a factor p of n and e mod (p-1). Each guess can be checked by taking a message m, computing m^e mod p and then comparing with c mod p, where c is the corresponding ciphertext. Since p and e mod (p-1) are maybe 20 bits each, this means that the security of the scheme is not larger than 40 bits.

But 40 bits is only a very crude upper bound. An attacker can do much better. For example he can guess a factor p. Then he computes the Jacobi symbols of the messages and ciphertexts. If a message m is a quadratic residue mod p then the ciphertext must be a quadratic residue mod p and vice versa. Hence if this relation is not satisfied for a message/ciphertext pair he can reject the guess for p. Or the attacker can compute discrete logarithms between message and ciphertext. This gives a much faster candidate for e mod (p-1).

That should give a security level of 20-30 bits, hence require a few seconds to break. If you extend your number of samples to 20 I might try some benchmarks.