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 class
PemPrivateKey
This is a special purpose implementation of aPrivateKey
which allows the user to pass PEM/PKCS#8 encoded key material straight intoOpenSslContext
without having to parse and re-encode bytes in Java land.(package private) class
PemValue
A PEM encoded value.class
PemX509Certificate
This is a special purpose implementation of aX509Certificate
which allows the user to pass PEM/PKCS#8 encoded data straight intoOpenSslContext
without having to parse and re-encode bytes in Java land.Methods in io.netty.handler.ssl that return PemEncoded Modifier and Type Method Description PemEncoded
PemEncoded. copy()
PemEncoded
PemEncoded. duplicate()
PemEncoded
PemEncoded. replace(ByteBuf content)
PemEncoded
PemEncoded. retain()
PemEncoded
PemEncoded. retain(int increment)
PemEncoded
PemEncoded. retainedDuplicate()
(package private) static PemEncoded
PemPrivateKey. toPEM(ByteBufAllocator allocator, boolean useDirect, byte[] bytes)
(package private) static PemEncoded
PemPrivateKey. toPEM(ByteBufAllocator allocator, boolean useDirect, java.security.PrivateKey key)
Creates aPemEncoded
value from thePrivateKey
.(package private) static PemEncoded
PemX509Certificate. toPEM(ByteBufAllocator allocator, boolean useDirect, java.security.cert.X509Certificate... chain)
Creates aPemEncoded
value from theX509Certificate
s.PemEncoded
PemEncoded. touch()
PemEncoded
PemEncoded. touch(java.lang.Object hint)
Methods in io.netty.handler.ssl with parameters of type PemEncoded Modifier and Type Method Description private static ByteBuf
PemX509Certificate. append(ByteBufAllocator allocator, boolean useDirect, PemEncoded encoded, int count, ByteBuf pem)
Appends thePemEncoded
value to theByteBuf
(last arg) and returns it.
-