diff options
author | vnugent <public@vaughnnugent.com> | 2024-08-28 19:54:45 -0400 |
---|---|---|
committer | vnugent <public@vaughnnugent.com> | 2024-08-28 19:54:45 -0400 |
commit | de9741b417ee04a54512af106b71cf388c93ea9d (patch) | |
tree | d0f2d129d6db16f635c538217ac8fb856f3225be /include/noscrypt.h | |
parent | 85c48ba24c34277ecaeb4ab513bd195a350cee2a (diff) |
feat: add library context alloc util functions
Diffstat (limited to 'include/noscrypt.h')
-rw-r--r-- | include/noscrypt.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/noscrypt.h b/include/noscrypt.h index 3702555..8ba71b0 100644 --- a/include/noscrypt.h +++ b/include/noscrypt.h @@ -156,7 +156,7 @@ typedef int64_t NCResult; /* An secp256k1 secret key (aka private key buffer) */ -typedef struct secret_key_struct { +typedef struct nc_secret_key_struct { uint8_t key[NC_SEC_KEY_SIZE]; @@ -165,7 +165,7 @@ typedef struct secret_key_struct { /* An x-only secp256k1 public key */ -typedef struct xonly_pubkey_struct { +typedef struct nc_xonly_pubkey_struct { uint8_t key[NC_PUBKEY_SIZE]; |