hmac method

  1. @override
Hmac hmac(
  1. HashAlgorithm hashAlgorithm
)

A factory used by Hmac.

Implementation

@override
Hmac hmac(HashAlgorithm hashAlgorithm) {
  final impl = FlutterHmac(hashAlgorithm);
  if (impl.isSupportedPlatform) {
    return impl;
  }
  return super.hmac(hashAlgorithm);
}