libsodium.crypto_box

D language bindings for libsodium's crypto_box.h

Members

Functions

crypto_box
int crypto_box(ubyte* c, const(ubyte)* m, ulong mlen, const(ubyte)* n, const(ubyte)* pk, const(ubyte)* sk)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
crypto_box_afternm
int crypto_box_afternm(ubyte* c, const(ubyte)* m, ulong mlen, const(ubyte)* n, const(ubyte)* k)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
crypto_box_beforenm
int crypto_box_beforenm(ubyte* k, const(ubyte)* pk, const(ubyte)* sk)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
crypto_box_beforenmbytes
size_t crypto_box_beforenmbytes()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
crypto_box_boxzerobytes
size_t crypto_box_boxzerobytes()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
crypto_box_detached
int crypto_box_detached(ubyte* c, ubyte* mac, const(ubyte)* m, ulong mlen, const(ubyte)* n, const(ubyte)* pk, const(ubyte)* sk)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
crypto_box_detached_afternm
int crypto_box_detached_afternm(ubyte* c, ubyte* mac, const(ubyte)* m, ulong mlen, const(ubyte)* n, const(ubyte)* k)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
crypto_box_easy
int crypto_box_easy(ubyte* c, const(ubyte)* m, ulong mlen, const(ubyte)* n, const(ubyte)* pk, const(ubyte)* sk)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
crypto_box_easy_afternm
int crypto_box_easy_afternm(ubyte* c, const(ubyte)* m, ulong mlen, const(ubyte)* n, const(ubyte)* k)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
crypto_box_keypair
int crypto_box_keypair(ubyte* pk, ubyte* sk)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
crypto_box_macbytes
size_t crypto_box_macbytes()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
crypto_box_messagebytes_max
size_t crypto_box_messagebytes_max()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
crypto_box_noncebytes
size_t crypto_box_noncebytes()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
crypto_box_open
int crypto_box_open(ubyte* m, const(ubyte)* c, ulong clen, const(ubyte)* n, const(ubyte)* pk, const(ubyte)* sk)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
crypto_box_open_afternm
int crypto_box_open_afternm(ubyte* m, const(ubyte)* c, ulong clen, const(ubyte)* n, const(ubyte)* k)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
crypto_box_open_detached
int crypto_box_open_detached(ubyte* m, const(ubyte)* c, const(ubyte)* mac, ulong clen, const(ubyte)* n, const(ubyte)* pk, const(ubyte)* sk)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
crypto_box_open_detached_afternm
int crypto_box_open_detached_afternm(ubyte* m, const(ubyte)* c, const(ubyte)* mac, ulong clen, const(ubyte)* n, const(ubyte)* k)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
crypto_box_open_easy
int crypto_box_open_easy(ubyte* m, const(ubyte)* c, ulong clen, const(ubyte)* n, const(ubyte)* pk, const(ubyte)* sk)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
crypto_box_open_easy_afternm
int crypto_box_open_easy_afternm(ubyte* m, const(ubyte)* c, ulong clen, const(ubyte)* n, const(ubyte)* k)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
crypto_box_primitive
const(char)* crypto_box_primitive()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
crypto_box_publickeybytes
size_t crypto_box_publickeybytes()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
crypto_box_seal
int crypto_box_seal(ubyte* c, const(ubyte)* m, ulong mlen, const(ubyte)* pk)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
crypto_box_seal_open
int crypto_box_seal_open(ubyte* m, const(ubyte)* c, ulong clen, const(ubyte)* pk, const(ubyte)* sk)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
crypto_box_sealbytes
size_t crypto_box_sealbytes()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
crypto_box_secretkeybytes
size_t crypto_box_secretkeybytes()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
crypto_box_seed_keypair
int crypto_box_seed_keypair(ubyte* pk, ubyte* sk, const(ubyte)* seed)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
crypto_box_seedbytes
size_t crypto_box_seedbytes()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
crypto_box_zerobytes
size_t crypto_box_zerobytes()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Manifest constants

crypto_box_BEFORENMBYTES
enum crypto_box_BEFORENMBYTES;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
crypto_box_BOXZEROBYTES
enum crypto_box_BOXZEROBYTES;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
crypto_box_MACBYTES
enum crypto_box_MACBYTES;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
crypto_box_MESSAGEBYTES_MAX
enum crypto_box_MESSAGEBYTES_MAX;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
crypto_box_NONCEBYTES
enum crypto_box_NONCEBYTES;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
crypto_box_PRIMITIVE
enum crypto_box_PRIMITIVE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
crypto_box_PUBLICKEYBYTES
enum crypto_box_PUBLICKEYBYTES;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
crypto_box_SEALBYTES
enum crypto_box_SEALBYTES;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
crypto_box_SECRETKEYBYTES
enum crypto_box_SECRETKEYBYTES;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
crypto_box_SEEDBYTES
enum crypto_box_SEEDBYTES;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
crypto_box_ZEROBYTES
enum crypto_box_ZEROBYTES;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Meta

License

ISC (see LICENSE.txt)