public OAEPParameterSpec(String mdName, String mgfName, AlgorithmParameterSpec mgfSpec, PSource pSrc)Creates a new OAEPParameterSpec instance with the specified
message digest algorithm name, mask generation function
(mgf) algorithm name, parameters for the mgf
algorithm and the source of the label L .
if ((mdName == null) || (mgfName == null) || (pSrc == null)) {
throw new NullPointerException();
}
this.mdName = mdName;
this.mgfName = mgfName;
this.mgfSpec = mgfSpec;
this.pSrc = pSrc;
|