RateLimited°C
10-24-2024
BSV
$48.03
Vol 13.09m
3.95%
BTC
$67693
Vol 34663.9m
2.98%
BCH
$361.07
Vol 255.32m
5.36%
LTC
$71.06
Vol 294.69m
3.55%
DOGE
$0.14
Vol 1520.87m
3.78%
Getting your Trinity Audio player ready...

This post was first published on Medium.

Using ElGamal Encryption

Alice has an encrypted message, i.e., a ciphertext. Bob has the original message, the plaintext. Alice wants to pay Bob bitcoin in exchange for the plaintext. If Alice pays Bob first, Bob may not give her the plaintext. Conversely, if Bob tells Alice the plaintext first, Alice may refuse to pay.

We design a smart contract, called pay to decrypt, that makes the exchange atomic and trustless, ensuring only a correct plaintext can redeem the locked fund¹.

Diffie–Hellman Key Exchange

Diffie–Hellman key exchange (DHKE) is a key agreement protocol that allows two parties to establish a shared secret over an insecure channel.

This diagram below shows DHKE over an elliptic curve. At the beginning, Alice and Bob each has a public–private key pair. After the exchange, they generate a shared key.

Elliptic Curve Diffie Hellman

Elliptic Curve Diffie Hellman

ElGamal Encryption

ElGamal encryption is an asymmetric key encryption algorithm based on the Diffie–Hellman key exchange, named after Taher Elgamal². Alice encrypts a message to Bob with his public key, which can only be decrypted by Bob’s private key.

The following diagram shows how it works over an elliptic curve, such as secp256k1 in Bitcoin. As in a standard DHKE, the following shared secret is established.

              S = k * A = a * K = k * a * P

a is Alice’s secret key and k can be regarded as Bob’s.

To encrypt a message M, Bob simply adds it to S:

              C = S + M

Bob sends the ciphertext, the pair (KC), to Alice.

To decrypt, Alice can simply subtract to recover M:

              M = C – S

Note Alice knows S from K:

              S = a * K

ElGamal Encryption
ElGamal Encryption

Pay to decrypt

Alice locks fund in the following contract, with given K and C. Bob can only redeem it if he provides the correct plaintext and decryption key. We use the previous elliptic curve library for point arithmetic.

Contract Pay2Decrypt

Acknowledgements

This is an implementation of nChain whitepaper 1611.

***

NOTES:

[1] This applies to plaintext that can be made public, since it will be exposed on the blockchain.

[2] Taher Elgamal is dubbed the “father of SSL” and a doctoral student of Martin Hellman, as in Diffie–Hellman.

Recommended for you

BSV Association joins OnlyDust’s developer event sponsor list
OnlyDust is a network for open-source developers working with blockchain and decentralized projects; its purpose is to connect contributors, maintainers,...
October 23, 2024
How Teranode will leave the competition in the dust
As we enter 2025, other blockchain networks that touted themselves as the future of scalability will find themselves behind BSV...
October 22, 2024
Advertisement
Advertisement
Advertisement