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