cborEncode method

  1. @override
CborTagValue<CborObject<Object?>> cborEncode()
override

Implementation

@override
CborTagValue cborEncode() {
  return CborTagValue(
    CborListValue<CborObject>.definite([
      CborIntValue(dklen),
      CborIntValue(n),
      CborIntValue(r),
      CborIntValue(p),
      CborBytesValue(salt),
    ]),
    _SecretStorageConst.scryptTag,
  );
}