From 5499df418a7829cec8b1b542311614add4cbca27 Mon Sep 17 00:00:00 2001 From: Markus Triska Date: Sun, 7 Jun 2020 11:02:18 +0200 Subject: [PATCH] use secp256k1 in the example --- src/prolog/lib/crypto.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/prolog/lib/crypto.pl b/src/prolog/lib/crypto.pl index 92202046..7d099d23 100644 --- a/src/prolog/lib/crypto.pl +++ b/src/prolog/lib/crypto.pl @@ -689,7 +689,7 @@ ed25519_verify(Key0, Data0, Signature0, Options) :- Sample use: Establishing a shared secret S, using ECDH key exchange. - ?- crypto_name_curve(Name, C), + ?- crypto_name_curve(secp256k1, C), crypto_curve_generator(C, Generator), PrivateKey = 10, crypto_curve_scalar_mult(C, PrivateKey, Generator, PublicKey), -- 2.54.0