Mark edwards25519sha512batch functions as deprecated
This commit is contained in:
parent
1d4a2aabac
commit
99850abecc
@ -24,33 +24,39 @@ extern "C" {
|
|||||||
|
|
||||||
#define crypto_sign_edwards25519sha512batch_BYTES 64U
|
#define crypto_sign_edwards25519sha512batch_BYTES 64U
|
||||||
SODIUM_EXPORT
|
SODIUM_EXPORT
|
||||||
size_t crypto_sign_edwards25519sha512batch_bytes(void);
|
size_t crypto_sign_edwards25519sha512batch_bytes(void)
|
||||||
|
__attribute__ ((deprecated));
|
||||||
|
|
||||||
#define crypto_sign_edwards25519sha512batch_PUBLICKEYBYTES 32U
|
#define crypto_sign_edwards25519sha512batch_PUBLICKEYBYTES 32U
|
||||||
SODIUM_EXPORT
|
SODIUM_EXPORT
|
||||||
size_t crypto_sign_edwards25519sha512batch_publickeybytes(void);
|
size_t crypto_sign_edwards25519sha512batch_publickeybytes(void)
|
||||||
|
__attribute__ ((deprecated));
|
||||||
|
|
||||||
#define crypto_sign_edwards25519sha512batch_SECRETKEYBYTES (32U + 32U)
|
#define crypto_sign_edwards25519sha512batch_SECRETKEYBYTES (32U + 32U)
|
||||||
SODIUM_EXPORT
|
SODIUM_EXPORT
|
||||||
size_t crypto_sign_edwards25519sha512batch_secretkeybytes(void);
|
size_t crypto_sign_edwards25519sha512batch_secretkeybytes(void)
|
||||||
|
__attribute__ ((deprecated));
|
||||||
|
|
||||||
SODIUM_EXPORT
|
SODIUM_EXPORT
|
||||||
int crypto_sign_edwards25519sha512batch(unsigned char *sm,
|
int crypto_sign_edwards25519sha512batch(unsigned char *sm,
|
||||||
unsigned long long *smlen_p,
|
unsigned long long *smlen_p,
|
||||||
const unsigned char *m,
|
const unsigned char *m,
|
||||||
unsigned long long mlen,
|
unsigned long long mlen,
|
||||||
const unsigned char *sk);
|
const unsigned char *sk)
|
||||||
|
__attribute__ ((deprecated));
|
||||||
|
|
||||||
SODIUM_EXPORT
|
SODIUM_EXPORT
|
||||||
int crypto_sign_edwards25519sha512batch_open(unsigned char *m,
|
int crypto_sign_edwards25519sha512batch_open(unsigned char *m,
|
||||||
unsigned long long *mlen_p,
|
unsigned long long *mlen_p,
|
||||||
const unsigned char *sm,
|
const unsigned char *sm,
|
||||||
unsigned long long smlen,
|
unsigned long long smlen,
|
||||||
const unsigned char *pk);
|
const unsigned char *pk)
|
||||||
|
__attribute__ ((deprecated));
|
||||||
|
|
||||||
SODIUM_EXPORT
|
SODIUM_EXPORT
|
||||||
int crypto_sign_edwards25519sha512batch_keypair(unsigned char *pk,
|
int crypto_sign_edwards25519sha512batch_keypair(unsigned char *pk,
|
||||||
unsigned char *sk);
|
unsigned char *sk)
|
||||||
|
__attribute__ ((deprecated));
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user