| Package | Description |
|---|---|
| io.netty.handler.ssl |
SSL ·
TLS implementation based on
SSLEngine |
| Modifier and Type | Class and Description |
|---|---|
class |
PemPrivateKey
This is a special purpose implementation of a
PrivateKey which allows the
user to pass PEM/PKCS#8 encoded key material straight into OpenSslContext
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 a
X509Certificate which allows
the user to pass PEM/PKCS#8 encoded data straight into OpenSslContext without
having to parse and re-encode bytes in Java land. |
| Modifier and Type | Method and 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,
java.security.PrivateKey key)
Creates a
PemEncoded value from the PrivateKey. |
(package private) static PemEncoded |
PemX509Certificate.toPEM(ByteBufAllocator allocator,
boolean useDirect,
java.security.cert.X509Certificate... chain)
Creates a
PemEncoded value from the X509Certificates. |
PemEncoded |
PemEncoded.touch() |
PemEncoded |
PemEncoded.touch(java.lang.Object hint) |
| Modifier and Type | Method and Description |
|---|---|
private static ByteBuf |
PemX509Certificate.append(ByteBufAllocator allocator,
boolean useDirect,
PemEncoded encoded,
int count,
ByteBuf pem)
Appends the
PemEncoded value to the ByteBuf (last arg) and returns it. |