csecp256k1

secp256k1 bindings.
Log | Files | Refs | README | LICENSE

commit 669ff15b24f7e5c736cafa9c2b9b2bb9e825594c
parent 746837b1621819bf6070dd8df2a18fd701fe04be
Author: Jared Tobin <jared@jtobin.io>
Date:   Tue, 27 Feb 2024 20:20:56 +0400

lib: doc tweaks

Diffstat:
Mlib/Crypto/Secp256k1.hs | 7+++----
1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/lib/Crypto/Secp256k1.hs b/lib/Crypto/Secp256k1.hs @@ -10,9 +10,8 @@ -- Stability: stable -- Portability: portable -- --- Bindings to bitcoin-core/secp256k1, which "provides digital --- signatures and other cryptographic primitives on the secp256k1 --- elliptic curve." +-- Bindings to bitcoin-core/secp256k1, which provides digital signatures +-- and other cryptographic primitives on the secp256k1 elliptic curve. -- -- This library exposes a minimal subset of functionality, primarily -- supporting ECDSA/Schnorr signatures and ECDH secret computation. @@ -105,7 +104,7 @@ newtype XOnlyPub = XOnlyPub BS.ByteString instance Show XOnlyPub where show _ = "<bitcoin-core/secp256k1 x-only public key>" --- | A bitcoin-core/secp256k1-internal public/secret keypair. +-- | A bitcoin-core/secp256k1-internal keypair. -- -- Create a value of this type by passing a secret key to -- 'create_keypair'.