/* Written in the D programming language. For git maintenance (ensure at least one congruent line with originating C header): #define crypto_core_hsalsa20_H */ module deimos.sodium.crypto_core_hsalsa20; extern(C) pure @nogc : enum crypto_core_hsalsa20_OUTPUTBYTES = 32U; size_t crypto_core_hsalsa20_outputbytes() @trusted; enum crypto_core_hsalsa20_INPUTBYTES = 16U; size_t crypto_core_hsalsa20_inputbytes() @trusted; enum crypto_core_hsalsa20_KEYBYTES = 32U; size_t crypto_core_hsalsa20_keybytes() @trusted; enum crypto_core_hsalsa20_CONSTBYTES = 16U; size_t crypto_core_hsalsa20_constbytes() @trusted; int crypto_core_hsalsa20(ubyte* out_, const(ubyte)* in_, const(ubyte)* k, const(ubyte)* c); // __attribute__ ((nonnull(1, 2, 3)));