29#ifndef OCRYPTO_ED25519PH_H
30#define OCRYPTO_ED25519PH_H
46#define ocrypto_ed25519ph_PUBLIC_KEY_BYTES (32)
51#define ocrypto_ed25519ph_SECRET_KEY_BYTES (32)
56#define ocrypto_ed25519ph_HASH_BYTES (64)
61#define ocrypto_ed25519ph_BYTES (64)
124 ocrypto_ed25519ph_ctx *ctx,
141 ocrypto_ed25519ph_ctx *ctx,
162 ocrypto_ed25519ph_ctx *ctx,
#define ocrypto_ed25519ph_BYTES
Definition ocrypto_ed25519ph.h:61
#define ocrypto_ed25519ph_PUBLIC_KEY_BYTES
Definition ocrypto_ed25519ph.h:46
#define ocrypto_ed25519ph_HASH_BYTES
Definition ocrypto_ed25519ph.h:56
void ocrypto_ed25519ph_public_key_ctx(ocrypto_ed25519ph_ctx *ctx, uint8_t pk[(32)], const uint8_t sk[(32)])
int ocrypto_ed25519ph_verify_ctx(ocrypto_ed25519ph_ctx *ctx, const uint8_t sig[(64)], const uint8_t hash[(64)], const uint8_t pk[(32)])
#define ocrypto_ed25519ph_SECRET_KEY_BYTES
Definition ocrypto_ed25519ph.h:51
int ocrypto_ed25519ph_verify(const uint8_t sig[(64)], const uint8_t hash[(64)], const uint8_t pk[(32)])
void ocrypto_ed25519ph_sign_ctx(ocrypto_ed25519ph_ctx *ctx, uint8_t sig[(64)], const uint8_t hash[(64)], const uint8_t sk[(32)], const uint8_t pk[(32)])
void ocrypto_ed25519ph_sign(uint8_t sig[(64)], const uint8_t hash[(64)], const uint8_t sk[(32)], const uint8_t pk[(32)])
void ocrypto_ed25519ph_public_key(uint8_t pk[(32)], const uint8_t sk[(32)])
Declaration of internal types used in public interfaces.
Definition ocrypto_types_25519.h:86