Esempio n. 1
0
 internal static unsafe extern int crypto_auth_hmacsha512_update(
     crypto_auth_hmacsha512_state *state,
     SecureMemoryHandle @in,
     ulong inlen);
Esempio n. 2
0
 internal static unsafe extern int crypto_auth_hmacsha512_update(
     crypto_auth_hmacsha512_state *state,
     byte * @in,
     ulong inlen);
Esempio n. 3
0
 internal static unsafe extern int crypto_auth_hmacsha512_init(
     crypto_auth_hmacsha512_state *state,
     byte *key,
     UIntPtr keylen);
Esempio n. 4
0
 internal static unsafe extern int crypto_auth_hmacsha512_init(
     crypto_auth_hmacsha512_state *state,
     SecureMemoryHandle key,
     UIntPtr keylen);
Esempio n. 5
0
 internal static unsafe extern int crypto_auth_hmacsha512_final(
     crypto_auth_hmacsha512_state *state,
     byte * @out);