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