cborEncode method

  1. @override
CborTagValue cborEncode()
override

Implementation

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