示例#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);