Sha256: 3085c9c338509ff11777cea0b7bc457e1b6c3bf1e24da42712d6eb6fe8b131a1
Contents?: true
Size: 580 Bytes
Versions: 15
Compression:
Stored size: 580 Bytes
Contents
#include "crypto_scalarmult.h" size_t crypto_scalarmult_bytes(void) { return crypto_scalarmult_BYTES; } size_t crypto_scalarmult_scalarbytes(void) { return crypto_scalarmult_SCALARBYTES; } const char * crypto_scalarmult_primitive(void) { return crypto_scalarmult_PRIMITIVE; } int crypto_scalarmult_base(unsigned char *q, const unsigned char *n) { return crypto_scalarmult_curve25519_base(q, n); } int crypto_scalarmult(unsigned char *q, const unsigned char *n, const unsigned char *p) { return crypto_scalarmult_curve25519(q, n, p); }
Version data entries
15 entries across 15 versions & 1 rubygems