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