OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:pssp
(Results
1 - 1
of
1
) sorted by null
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/
AlgorithmParametersSpi.java
178
RSASSAPSSparams
pssP
= new RSASSAPSSparams(hashAlgorithm, maskGenAlgorithm, new ASN1Integer(pssSpec.getSaltLength()), new ASN1Integer(pssSpec.getTrailerField()));
180
return
pssP
.getEncoded("DER");
226
RSASSAPSSparams
pssP
= RSASSAPSSparams.getInstance(params);
229
pssP
.getHashAlgorithm().getAlgorithm().getId(),
230
pssP
.getMaskGenAlgorithm().getAlgorithm().getId(),
231
new MGF1ParameterSpec(AlgorithmIdentifier.getInstance(
pssP
.getMaskGenAlgorithm().getParameters()).getAlgorithm().getId()),
232
pssP
.getSaltLength().intValue(),
233
pssP
.getTrailerField().intValue());
Completed in 63 milliseconds