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