Esempio n. 1
0
 internal static extern int crypto_auth_hmacsha256_init(
     out crypto_auth_hmacsha256_state state,
     SecureMemoryHandle key,
     UIntPtr keylen);
Esempio n. 2
0
 internal static extern int crypto_auth_hmacsha256_init(
     out crypto_auth_hmacsha256_state state,
     ref byte key,
     UIntPtr keylen);
Esempio n. 3
0
 internal static extern int crypto_auth_hmacsha256_final(
     ref crypto_auth_hmacsha256_state state,
     ref byte @out);
Esempio n. 4
0
 internal static extern int crypto_auth_hmacsha256_update(
     ref crypto_auth_hmacsha256_state state,
     in uint @in,
Esempio n. 5
0
 internal static extern int crypto_auth_hmacsha256_init(
     out crypto_auth_hmacsha256_state state,
     in byte key,
Esempio n. 6
0
 internal static extern int crypto_auth_hmacsha256_update(
     ref crypto_auth_hmacsha256_state state,
     ref uint @in,
     ulong inlen);