Example #1
0
 internal static extern int crypto_hash_sha256_update(
     ref crypto_hash_sha256_state state,
     ref uint @in,
     ulong inlen);
Example #2
0
 internal static extern int crypto_hash_sha256_init(
     out crypto_hash_sha256_state state);
Example #3
0
 internal static extern int crypto_hash_sha256_final(
     ref crypto_hash_sha256_state state,
     ref byte @out);
Example #4
0
 internal static extern int crypto_hash_sha256_final(
     ref crypto_hash_sha256_state state,
     SecureMemoryHandle @out);
Example #5
0
 internal static extern int crypto_hash_sha256_update(
     ref crypto_hash_sha256_state state,
     in uint @in,