configurePssParameters() — netty Function Reference
Architecture documentation for the configurePssParameters() function in JdkDelegatingPrivateKeyMethod.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD cd6c96a3_2c7b_1d94_a039_5139f53c278d["configurePssParameters()"] 2c92da02_7d89_acb4_f8d8_102366ec64e7["JdkDelegatingPrivateKeyMethod"] cd6c96a3_2c7b_1d94_a039_5139f53c278d -->|defined in| 2c92da02_7d89_acb4_f8d8_102366ec64e7 a4801e64_db66_2026_c781_2c5880096719["configureOpenSslAlgorithmParameters()"] a4801e64_db66_2026_c781_2c5880096719 -->|calls| cd6c96a3_2c7b_1d94_a039_5139f53c278d style cd6c96a3_2c7b_1d94_a039_5139f53c278d fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
handler/src/main/java/io/netty/handler/ssl/JdkDelegatingPrivateKeyMethod.java lines 238–247
private static void configurePssParameters(Signature signature,
MGF1ParameterSpec mgfSpec, int saltLength)
throws InvalidAlgorithmParameterException {
PSSParameterSpec pssSpec = new PSSParameterSpec(mgfSpec.getDigestAlgorithm(), "MGF1", mgfSpec, saltLength, 1);
signature.setParameter(pssSpec);
if (logger.isDebugEnabled()) {
logger.debug("Configured PSS parameters: hash={}, saltLength={}", mgfSpec.getDigestAlgorithm(), saltLength);
}
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does configurePssParameters() do?
configurePssParameters() is a function in the netty codebase, defined in handler/src/main/java/io/netty/handler/ssl/JdkDelegatingPrivateKeyMethod.java.
Where is configurePssParameters() defined?
configurePssParameters() is defined in handler/src/main/java/io/netty/handler/ssl/JdkDelegatingPrivateKeyMethod.java at line 238.
What calls configurePssParameters()?
configurePssParameters() is called by 1 function(s): configureOpenSslAlgorithmParameters.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free