createKeyPairWithProvider() — netty Function Reference
Architecture documentation for the createKeyPairWithProvider() function in CertificateBuilderTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD b9c5c479_23db_6db0_9890_0272a38f479b["createKeyPairWithProvider()"] 8c85a9d3_f3ae_f481_1984_99bd24f9c654["CertificateBuilderTest"] b9c5c479_23db_6db0_9890_0272a38f479b -->|defined in| 8c85a9d3_f3ae_f481_1984_99bd24f9c654 style b9c5c479_23db_6db0_9890_0272a38f479b fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
pkitesting/src/test/java/io/netty/pkitesting/CertificateBuilderTest.java lines 107–116
@ParameterizedTest
@EnumSource(names = {"ecp256", "ecp384", "rsa2048", "rsa3072"})
void createKeyPairWithProvider(Algorithm algorithm) throws Exception {
assumeTrue(algorithm.isSupported());
KeyPair keyPair = algorithm.generateKeyPair(RNG, new BouncyCastleProvider());
assertNotNull(keyPair);
assertNotNull(keyPair.getPrivate());
assertNotNull(keyPair.getPublic());
}
Domain
Subdomains
Source
Frequently Asked Questions
What does createKeyPairWithProvider() do?
createKeyPairWithProvider() is a function in the netty codebase, defined in pkitesting/src/test/java/io/netty/pkitesting/CertificateBuilderTest.java.
Where is createKeyPairWithProvider() defined?
createKeyPairWithProvider() is defined in pkitesting/src/test/java/io/netty/pkitesting/CertificateBuilderTest.java at line 107.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free