We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
raw
1 parent 2f6a897 commit 2693aecCopy full SHA for 2693aec
constantine/ecdsa_secp256k1.nim
@@ -21,11 +21,11 @@ const prefix_ffi = "ctt_ecdsa_secp256k1_"
21
type
22
SecretKey* {.byref, exportc: prefix_ffi & "seckey".} = object
23
## A Secp256k1 secret key
24
- raw*: Fr[Secp256k1]
+ raw: Fr[Secp256k1]
25
26
PublicKey* {.byref, exportc: prefix_ffi & "pubkey".} = object
27
## A Secp256k1 public key for ECDSA signatures
28
- raw*: EC_ShortW_Aff[Fp[Secp256k1], G1]
+ raw: EC_ShortW_Aff[Fp[Secp256k1], G1]
29
30
Signature* {.byref, exportc: prefix_ffi & "signature".} = object
31
## A Secp256k1 signature for ECDSA signatures
0 commit comments