mirror of
https://github.com/jedisct1/libsodium.git
synced 2024-12-23 20:15:19 -07:00
parent
a5e2122177
commit
611e1a0bc1
@ -1,3 +1,4 @@
|
||||
_crypto_core_ristretto255_from_string 0 1
|
||||
_crypto_aead_aegis128l_abytes 0 0
|
||||
_crypto_aead_aegis128l_decrypt 0 0
|
||||
_crypto_aead_aegis128l_decrypt_detached 0 0
|
||||
|
File diff suppressed because one or more lines are too long
@ -119,9 +119,9 @@ _string_to_element(unsigned char *p,
|
||||
}
|
||||
|
||||
int
|
||||
crypto_core_risretto255_from_string(unsigned char p[crypto_core_ristretto255_BYTES],
|
||||
const char *ctx, const unsigned char *msg,
|
||||
size_t msg_len)
|
||||
crypto_core_ristretto255_from_string(unsigned char p[crypto_core_ristretto255_BYTES],
|
||||
const char *ctx, const unsigned char *msg,
|
||||
size_t msg_len)
|
||||
{
|
||||
return _string_to_element(p, ctx, msg, msg_len);
|
||||
}
|
||||
@ -131,7 +131,7 @@ crypto_core_ristretto255_from_string_ro(unsigned char p[crypto_core_ristretto255
|
||||
const char *ctx, const unsigned char *msg,
|
||||
size_t msg_len)
|
||||
{
|
||||
return crypto_core_risretto255_from_string(p, ctx, msg, msg_len);
|
||||
return crypto_core_ristretto255_from_string(p, ctx, msg, msg_len);
|
||||
}
|
||||
|
||||
void
|
||||
|
@ -230,10 +230,10 @@ crypto_core_hsalsa20_constbytes
|
||||
crypto_core_hsalsa20_inputbytes
|
||||
crypto_core_hsalsa20_keybytes
|
||||
crypto_core_hsalsa20_outputbytes
|
||||
crypto_core_risretto255_from_string
|
||||
crypto_core_ristretto255_add
|
||||
crypto_core_ristretto255_bytes
|
||||
crypto_core_ristretto255_from_hash
|
||||
crypto_core_ristretto255_from_string
|
||||
crypto_core_ristretto255_from_string_ro
|
||||
crypto_core_ristretto255_hashbytes
|
||||
crypto_core_ristretto255_is_valid_point
|
||||
|
Loading…
Reference in New Issue
Block a user