DecryptOAEPRequest constructor

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

Implementation

factory DecryptOAEPRequest({
  $core.String? ciphertext,
  $core.String? label,
  Hash? hash,
  $core.String? privateKey,
}) {
  final _result = create();
  if (ciphertext != null) {
    _result.ciphertext = ciphertext;
  }
  if (label != null) {
    _result.label = label;
  }
  if (hash != null) {
    _result.hash = hash;
  }
  if (privateKey != null) {
    _result.privateKey = privateKey;
  }
  return _result;
}