From: Markus Triska Date: Wed, 20 May 2020 22:14:15 +0000 (+0200) Subject: "PrivateKey" --> "KeyPair" X-Git-Tag: v0.8.123~7^2~2 X-Git-Url: https://git.sagredo.dev/?a=commitdiff_plain;h=72bf45912e13953c885516bb389f8470ff9e7e46;p=scryer-prolog.git "PrivateKey" --> "KeyPair" --- diff --git a/src/prolog/lib/crypto.pl b/src/prolog/lib/crypto.pl index d4ebf2e5..8c255a4c 100644 --- a/src/prolog/lib/crypto.pl +++ b/src/prolog/lib/crypto.pl @@ -23,7 +23,7 @@ crypto_data_decrypt/6, % +CipherText, +Algorithm, +Key, +IV, -PlainText, +Options ed25519_new_keypair/1, % -KeyPair ed25519_keypair_public_key/2, % +KeyPair, +PublicKey - ed25519_sign/4, % +PrivateKey, +Data, -Signature, +Options + ed25519_sign/4, % +KeyPair, +Data, -Signature, +Options ed25519_verify/4, % +PublicKey, +Data, -Signature, +Options crypto_name_curve/2, % +Name, -Curve crypto_curve_order/2, % +Curve, -Order