hexEncode static method

CryptoStep<Uint8List, String> hexEncode()

Encodes bytes as canonical lowercase hexadecimal.

Implementation

static CryptoStep<Uint8List, String> hexEncode() => const _OperationStep(
  'encoding.hex.encode',
  CryptoBytes.encodeHex,
  _EncodingDescriptor(_EncodingOperation.hexEncode),
);