What encryption algorithm can use 2 keys: admin - encrypt & decrypt and user - only decrypt ?
|
|
|
You can do this with RSA by using the private key for encryption (as if you would be signing). The tuple Note that I deliberately chose the exponent Note that if you construct a hybrid system for this, the desired decrypt-only property breaks, because the user can get to the symmetrical session key as well and modify the message. I suspect you might want the decrypt-only property to actually achieve authentication of potentially large amounts of encrypted data (i.e. so that the user knows the data must come from the admin and has not been tampered with). If so, what you really need is a more complex scheme with a proper digital signature (providing authentication) and some form of encryption for confidentiality, e.g. hybrid using a symmetrical cipher for bulk encryption and e.g. RSA for encryption of the symmetrical key. However, you should be very careful when designing cryptographic systems like this, there are a lot of things which can go wrong and completely compromise the security of your system. Seek expert advice. |
||||
|
|
|
Edit: This is incorrect (see Daniel's comment). You can modify any algorithm to allow two keys by generating a session key, using that to encrypt the payload, then using the two keys to each encrypt the session key. For example, if
|
|||||
|