Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 512 Bytes

README.md

File metadata and controls

27 lines (17 loc) · 512 Bytes

A Go Implementation of ECDH-PSI

This is a Go implementation of elliptic curve diffie hellman private set intersection (ECDH-PSI) with only standard library.

build

go build

usage

In one terminal, run:

./ecdh-psi -role=alice

In another terminal, run:

./ecdh-psi -role=bob

Acknowledgement

I learnt a lot from encryptogroup/PSI and miracl/MIRACL. Thank you for those great projects!