hmacInit method

Pointer<Void> hmacInit(
  1. int hmacOp,
  2. Pointer<Uint8> key,
  3. int keyLen
)

HMAC

Implementation

ffi.Pointer<ffi.Void> hmacInit(
  int hmacOp,
  ffi.Pointer<ffi.Uint8> key,
  int keyLen,
) {
  return _hmacInit(
    hmacOp,
    key,
    keyLen,
  );
}