cborEncode method

  1. @override
CborTagValue cborEncode()
override

Implementation

@override
CborTagValue cborEncode() {
  return CborTagValue(
      CborListValue.fixedLength([
        CborIntValue(iterations),
        CborIntValue(dklen),
        CborStringValue("hmac-sha256"),
        CborBytesValue(salt)
      ]),
      _SecretStorageConst.pbdkdf2Tag);
}