mantycore / chant

p2p anonymous chan/chat thing. In very early prototype state
7 stars 1 forks source link

Cryptographic signatures #1

Closed mantycore closed 5 years ago

mantycore commented 5 years ago
mantycore commented 5 years ago

Reimplemented zk-proof-mark using big-integer; found a bug caused by negative exponent. Need to adjust bit lengths of values used.

mantycore commented 5 years ago

Decided against using ad-hoc implementation, instead will use inverted asymmetric cryptography scheme.

mantycore commented 5 years ago

Invert asymmetric cryptography is also ill advised, instead implemented the original scheme using NaCl signatures with the key pair generated from the message hash instead of Schnorr algorithm.