DecryptOAEPRequestObjectBuilder constructor

DecryptOAEPRequestObjectBuilder({
  1. String? ciphertext,
  2. String? label,
  3. Hash? hash,
  4. String? privateKey,
})

Implementation

DecryptOAEPRequestObjectBuilder({
  String? ciphertext,
  String? label,
  Hash? hash,
  String? privateKey,
})  : _ciphertext = ciphertext,
      _label = label,
      _hash = hash,
      _privateKey = privateKey;