Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am working on something which requires a large piece of data to be encrypted.

I know that this should be done using a symmetric key encryption system like AES instead of a public key encryption system like RSA, but I am thinking of doing it with RSA anyway, by splitting the data into smaller pieces and then encrypting each of them with the same public key.

Aside from performance considerations, is this method safe? Can this encryption method be broken easily?

share|improve this question
This question would be a better fit for crypto.stackexchange.com – jbtule Nov 13 '12 at 17:24
Especially since there is a lot to be desired from the answers you are getting - please disregard any answer as they are likely to be incorrect (even if they have been upvoted). – owlstead Nov 13 '12 at 23:38

closed as off topic by Eugene Mayevski 'EldoS Corp, Linger, jbtule, UmNyobe, Fábio Batista Nov 13 '12 at 18:12

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

3 Answers

No, it is not secure.

You are essentially using RSA as a block cipher, as you already noted by saying that you should probably be using a symmetric cipher in this place.

Also, as noted by @Jamey, this scheme of encrypting chunks/blocks of the plaintext independently from one another is, essentially, like Electronic Code Book (ECB) mode of operation of a block cipher.

Without the use of anything else, your proposed scheme is vulnerable to, at least, two attacks:

  • a replay attack, if you don't include any additional information in your scheme to prevent reuse of the messages. Think, for example, of an attacker recording all the encrypted stream between Alice and a Bank, where she withdraws $100.00 from her account.

    In this case, by replaying the stream more than one time, the attacker can make Alice go bankrupt by sending the stream many times to the bank, which will be fine.

  • a chosen-plaintext attack, as the blocks are independent and the attacker's advantage in this case would be 1 (as high as one can get).

Really, it is fun to try to come up with one's own cipher, but getting the security right is tough. Even more without integrity/authentication.

share|improve this answer
Replay attacks are as likely for symmetric ciphers as for asymmetric ciphers. RSA PKCS#1 encryption uses random padding, so ECB attacks won't work. Otherwise you would not be able to encrypt multiple messages with the same key. I don't think choosen plaintext attacks work either, but I'll have to get my brain thinking straight before I can conclude anything about that. – owlstead Nov 13 '12 at 23:34

As long as you use publicly vetted APIs you should be fine. But generally, you will want to encrypt just a symmetric key (like AES) with a RSA public key and then block-encrypt each message fragment with that symmetric key.

share|improve this answer
2  
This is not correct, as one can use the APIs in an incorrect way. See, for example: cs.utexas.edu/~shmat/shmat_ccs12.pdf – rbrito Nov 13 '12 at 9:19
So as a curiosity, are you aware of crypto APIs (in any framework/language) that can be used with fewer caveats? – Joe Xa Nov 13 '12 at 11:14
2  
@JoeXa Google's Keyczar is meant to be a higher level API, doesn't offer you control over the initialization vector, automatically does authenticated encryption, and makes it really difficult to hard code your encryption key, and gives a mechanism for key rotation. – jbtule Nov 13 '12 at 15:50
Or you might try and find a library for a higher level protocol such as CMS. – owlstead Nov 13 '12 at 23:40

The general advice is this: Don't invent a new cryptosystem if you actually care about security; or if you must, at least get it publicly peer reviewed by serious cryptography researchers.

That said, the best I've got is that this sounds like you're treating RSA as a kind of block cipher, and so you probably want to use a standard block cipher mode. The obvious thing to do, of just encrypting each block separately with the same key, sounds equivalent to Electronic Code-Book (ECB) mode, which is not secure. Perhaps you can use one of the better modes like CBC with RSA?

Since we're ignoring the practical performance problems, I'll point out a different practical consideration. The input m to RSA must be in the range 0<=m<n, where n is one of the public key parameters. Since the value of n must be the product of two distinct primes, it can never be a power of 2, so dividing your larger message into chunks that fit in the input to RSA is a little confusing.

Also, don't forget about padding each message you encrypt with RSA.

In short: Don't do it for a real project, but it's a neat thought experiment. :-)

share|improve this answer
See my comment on jbrito's answer. – owlstead Nov 13 '12 at 23:34

Not the answer you're looking for? Browse other questions tagged or ask your own question.