Uses of Interface
io.netty.handler.ssl.PemEncoded
-
Packages that use PemEncoded Package Description io.netty.handler.ssl SSL · TLS implementation based onSSLEngine -
-
Uses of PemEncoded in io.netty.handler.ssl
Classes in io.netty.handler.ssl that implement PemEncoded Modifier and Type Class Description classPemPrivateKeyThis is a special purpose implementation of aPrivateKeywhich allows the user to pass PEM/PKCS#8 encoded key material straight intoOpenSslContextwithout having to parse and re-encode bytes in Java land.(package private) classPemValueA PEM encoded value.classPemX509CertificateThis is a special purpose implementation of aX509Certificatewhich allows the user to pass PEM/PKCS#8 encoded data straight intoOpenSslContextwithout having to parse and re-encode bytes in Java land.Methods in io.netty.handler.ssl that return PemEncoded Modifier and Type Method Description PemEncodedPemEncoded. copy()PemEncodedPemEncoded. duplicate()PemEncodedPemEncoded. replace(ByteBuf content)PemEncodedPemEncoded. retain()PemEncodedPemEncoded. retain(int increment)PemEncodedPemEncoded. retainedDuplicate()(package private) static PemEncodedPemPrivateKey. toPEM(ByteBufAllocator allocator, boolean useDirect, byte[] bytes)(package private) static PemEncodedPemPrivateKey. toPEM(ByteBufAllocator allocator, boolean useDirect, java.security.PrivateKey key)Creates aPemEncodedvalue from thePrivateKey.(package private) static PemEncodedPemX509Certificate. toPEM(ByteBufAllocator allocator, boolean useDirect, java.security.cert.X509Certificate... chain)Creates aPemEncodedvalue from theX509Certificates.PemEncodedPemEncoded. touch()PemEncodedPemEncoded. touch(java.lang.Object hint)Methods in io.netty.handler.ssl with parameters of type PemEncoded Modifier and Type Method Description private static ByteBufPemX509Certificate. append(ByteBufAllocator allocator, boolean useDirect, PemEncoded encoded, int count, ByteBuf pem)Appends thePemEncodedvalue to theByteBuf(last arg) and returns it.
-