El Gamal encryption
The El Gamal scheme is used to provide asymmetric and homomorphic encryption
Last updated
The El Gamal scheme is used to provide asymmetric and homomorphic encryption
Last updated
To enable safe sensitive data communication El Gamal was chosen due to its ability to have homomorphism and its asymmetric nature.
For each input number El Gamal encryption generates a pair of cypher text data using the public parameters prime , generator and public key value . The cypher text is not deterministic, meaning a randomness factor is inserted in the encryption, which increases the security of the encrypted data.
The decryption process also uses the public parameters and but needs the private key which defines the scheme as asymmetric.
El Gamal scheme by default has multiplicative homomorphism, meaning that the encryption of the multiplication of raw data is equal to the multiplication of encrypted data, i.e:
Although the application for this characteristic is not directly useful for this project, it indirectly allows additive homomorphism if we use the input data as exponents, being that multiplication of same base operands result in addition of its exponents, so this result in the following scheme for additive homomorphism:
This process has a downside as the resulting decryption will retrieve instead of . To retrieve the original data the ECDLP would have to be solved, which depending on size of and is not feasible. However in zkSnarks context we intend to prove the validity of a transaction withou needing to reveal the actual value, thus atending to the project's needs.
For data that doesn't require additive homomorphism there's no need to encode the original input as exponents, meaning the decryption will avoid having to solve the ECDLP. In this project the raw data encryption will also be used on other sensitive data, such as the KDF secret sharing.