A B C D F G H I L M N P R S T V W X 

A

address(ByteBuffer) - Static method in class io.netty.internal.tcnative.Buffer
Returns the memory address of the ByteBuffer.
AES_KEY_SIZE - Static variable in class io.netty.internal.tcnative.SessionTicketKey
Size of session ticket key AES key
authenticationMethods(long) - Static method in class io.netty.internal.tcnative.SSL
 

B

bioClearByteBuffer(long) - Static method in class io.netty.internal.tcnative.SSL
After you are done buffering data from SSL.bioSetByteBuffer(long, long, int, boolean), this will ensure the internal SSL write buffers are ready to capture data which may unexpectedly happen (e.g. handshake, renegotiation, etc..).
bioFlushByteBuffer(long) - Static method in class io.netty.internal.tcnative.SSL
Flush any pending bytes in the internal SSL write buffer.
bioLengthByteBuffer(long) - Static method in class io.netty.internal.tcnative.SSL
Get the remaining length of the ByteBuffer set by SSL.bioSetByteBuffer(long, long, int, boolean).
bioLengthNonApplication(long) - Static method in class io.netty.internal.tcnative.SSL
Get the amount of data pending in buffer used for non-application writes.
bioNewByteBuffer(long, int) - Static method in class io.netty.internal.tcnative.SSL
Initialize the BIO for the SSL instance.
bioSetByteBuffer(long, long, int, boolean) - Static method in class io.netty.internal.tcnative.SSL
Set the memory location which that OpenSSL's internal BIO will use to write encrypted data to, or read encrypted data from.
bioWrite(long, long, int) - Static method in class io.netty.internal.tcnative.SSL
BIO_write
Buffer - Class in io.netty.internal.tcnative
 

C

certificateChain() - Method in class io.netty.internal.tcnative.CertificateRequestedCallback.KeyMaterial
Returns a x509 chain (STACK_OF(X509) pointer).
CertificateRequestedCallback - Interface in io.netty.internal.tcnative
Is called during handshake and hooked into openssl via SSL_CTX_set_client_cert_cb.
CertificateRequestedCallback.KeyMaterial - Class in io.netty.internal.tcnative
Holds the material to use.
CertificateRequestedCallback.KeyMaterial(long, long) - Constructor for class io.netty.internal.tcnative.CertificateRequestedCallback.KeyMaterial
 
CertificateVerifier - Interface in io.netty.internal.tcnative
Is called during handshake and hooked into openssl via SSL_CTX_set_cert_verify_callback.
clearError() - Static method in class io.netty.internal.tcnative.SSL
Clear all the errors from the error queue that OpenSSL encountered on this thread.
clearOptions(long, int) - Static method in class io.netty.internal.tcnative.SSL
Clear OpenSSL Option.
clearOptions(long, int) - Static method in class io.netty.internal.tcnative.SSLContext
Clears OpenSSL Options.

D

doHandshake(long) - Static method in class io.netty.internal.tcnative.SSL
SSL_do_handshake

F

free(long) - Static method in class io.netty.internal.tcnative.SSLContext
Free the resources used by the Context
freeBIO(long) - Static method in class io.netty.internal.tcnative.SSL
BIO_free
freePrivateKey(long) - Static method in class io.netty.internal.tcnative.SSL
Free private key (EVP_PKEY pointer).
freeSSL(long) - Static method in class io.netty.internal.tcnative.SSL
SSL_free
freeX509Chain(long) - Static method in class io.netty.internal.tcnative.SSL
Free x509 chain (STACK_OF(X509) pointer).

G

getAesKey() - Method in class io.netty.internal.tcnative.SessionTicketKey
Get AES Key.
getAlpnSelected(long) - Static method in class io.netty.internal.tcnative.SSL
SSL_get0_alpn_selected
getCipherForSSL(long) - Static method in class io.netty.internal.tcnative.SSL
SSL_get_cipher
getCiphers(long) - Static method in class io.netty.internal.tcnative.SSL
Returns all Returns the cipher suites that are available for negotiation in an SSL handshake.
getError(long, int) - Static method in class io.netty.internal.tcnative.SSL
SSL_get_error
getErrorString(long) - Static method in class io.netty.internal.tcnative.SSL
 
getHandshakeCount(long) - Static method in class io.netty.internal.tcnative.SSL
Returns the number of handshakes done for this SSL instance.
getHmacKey() - Method in class io.netty.internal.tcnative.SessionTicketKey
Get HMAC key.
getLastError() - Static method in class io.netty.internal.tcnative.SSL
Return last SSL error string
getLastErrorNumber() - Static method in class io.netty.internal.tcnative.SSL
Get the error number representing the last error OpenSSL encountered on this thread.
getMode(long) - Static method in class io.netty.internal.tcnative.SSLContext
Call SSL_CTX_get_mode
getName() - Method in class io.netty.internal.tcnative.SessionTicketKey
Get name.
getNextProtoNegotiated(long) - Static method in class io.netty.internal.tcnative.SSL
SSL_get0_next_proto_negotiated
getOptions(long) - Static method in class io.netty.internal.tcnative.SSL
Get OpenSSL Option.
getOptions(long) - Static method in class io.netty.internal.tcnative.SSLContext
Get OpenSSL Option.
getPeerCertChain(long) - Static method in class io.netty.internal.tcnative.SSL
Get the peer certificate chain or null if non was send.
getPeerCertificate(long) - Static method in class io.netty.internal.tcnative.SSL
Get the peer certificate or null if non was send.
getSessionCacheMode(long) - Static method in class io.netty.internal.tcnative.SSLContext
Get the mode of the current used internal session cache.
getSessionCacheSize(long) - Static method in class io.netty.internal.tcnative.SSLContext
Get the size of the internal session cache.
getSessionCacheTimeout(long) - Static method in class io.netty.internal.tcnative.SSLContext
Get the timeout for the internal session cache in seconds.
getSessionId(long) - Static method in class io.netty.internal.tcnative.SSL
Returns the ID of the session as byte array representation.
getShutdown(long) - Static method in class io.netty.internal.tcnative.SSL
SSL_get_shutdown
getTime(long) - Static method in class io.netty.internal.tcnative.SSL
SSL_get_time
getTimeout(long) - Static method in class io.netty.internal.tcnative.SSL
SSL_get_timeout
getVersion(long) - Static method in class io.netty.internal.tcnative.SSL
SSL_get_version

H

hasOp(int) - Static method in class io.netty.internal.tcnative.SSL
Return true if all the requested SSL_OP_* are supported by OpenSSL.
HMAC_KEY_SIZE - Static variable in class io.netty.internal.tcnative.SessionTicketKey
Size of session ticket key HMAC key

I

initialize() - Static method in class io.netty.internal.tcnative.Library
Calls Library.initialize(String, String) with "provided" and null.
initialize(String, String) - Static method in class io.netty.internal.tcnative.Library
Setup native library.
io.netty.internal.tcnative - package io.netty.internal.tcnative
 
isInInit(long) - Static method in class io.netty.internal.tcnative.SSL
SSL_in_init

L

Library - Class in io.netty.internal.tcnative
 

M

make(int, int) - Static method in class io.netty.internal.tcnative.SSLContext
Initialize new SSL context

N

NAME_SIZE - Static variable in class io.netty.internal.tcnative.SessionTicketKey
Size of session ticket key name
newMemBIO() - Static method in class io.netty.internal.tcnative.SSL
Initialize new in-memory BIO that is located in the secure heap.
newSSL(long, boolean) - Static method in class io.netty.internal.tcnative.SSL
SSL_new

P

parsePrivateKey(long, String) - Static method in class io.netty.internal.tcnative.SSL
Parse private key from BIO and return EVP_PKEY pointer.
parseX509Chain(long) - Static method in class io.netty.internal.tcnative.SSL
Parse X509 chain from BIO and return (STACK_OF(X509) pointer).
privateKey() - Method in class io.netty.internal.tcnative.CertificateRequestedCallback.KeyMaterial
Returns a EVP_PKEY pointer

R

readFromSSL(long, long, int) - Static method in class io.netty.internal.tcnative.SSL
SSL_read
renegotiate(long) - Static method in class io.netty.internal.tcnative.SSL
Call SSL_renegotiate.
requested(long, byte[], byte[][]) - Method in interface io.netty.internal.tcnative.CertificateRequestedCallback
Called during cert selection.

S

sessionAccept(long) - Static method in class io.netty.internal.tcnative.SSLContext
Session resumption statistics methods.
sessionAcceptGood(long) - Static method in class io.netty.internal.tcnative.SSLContext
 
sessionAcceptRenegotiate(long) - Static method in class io.netty.internal.tcnative.SSLContext
 
sessionCacheFull(long) - Static method in class io.netty.internal.tcnative.SSLContext
 
sessionCbHits(long) - Static method in class io.netty.internal.tcnative.SSLContext
 
sessionConnect(long) - Static method in class io.netty.internal.tcnative.SSLContext
 
sessionConnectGood(long) - Static method in class io.netty.internal.tcnative.SSLContext
 
sessionConnectRenegotiate(long) - Static method in class io.netty.internal.tcnative.SSLContext
 
sessionHits(long) - Static method in class io.netty.internal.tcnative.SSLContext
 
sessionMisses(long) - Static method in class io.netty.internal.tcnative.SSLContext
 
sessionNumber(long) - Static method in class io.netty.internal.tcnative.SSLContext
 
SessionTicketKey - Class in io.netty.internal.tcnative
Session Ticket Key
SessionTicketKey(byte[], byte[], byte[]) - Constructor for class io.netty.internal.tcnative.SessionTicketKey
Construct SessionTicketKey.
sessionTicketKeyFail(long) - Static method in class io.netty.internal.tcnative.SSLContext
 
sessionTicketKeyNew(long) - Static method in class io.netty.internal.tcnative.SSLContext
TLS session ticket key resumption statistics.
sessionTicketKeyRenew(long) - Static method in class io.netty.internal.tcnative.SSLContext
 
sessionTicketKeyResume(long) - Static method in class io.netty.internal.tcnative.SSLContext
 
sessionTimeouts(long) - Static method in class io.netty.internal.tcnative.SSLContext
 
setAlpnProtos(long, String[], int) - Static method in class io.netty.internal.tcnative.SSLContext
Set application layer protocol for application layer protocol negotiation extension
setCACertificateBio(long, long) - Static method in class io.netty.internal.tcnative.SSLContext
Set concatenated PEM-encoded CA Certificates for Client Auth
This directive sets the all-in-one BIO where you can assemble the Certificates of Certification Authorities (CA) whose clients you deal with.
setCertificate(long, String, String, String, int) - Static method in class io.netty.internal.tcnative.SSLContext
Deprecated.
Use SSLContext.setCertificate(long, String, String, String)

Set Certificate

Point setCertificateFile at a PEM encoded certificate. If the certificate is encrypted, then you will be prompted for a pass phrase. Note that a kill -HUP will prompt again. A test certificate can be generated with `make certificate' under built time. Keep in mind that if you've both a RSA and a DSA certificate you can configure both in parallel (to also allow the use of DSA ciphers, etc.)

If the key is not combined with the certificate, use key param to point at the key file. Keep in mind that if you've both a RSA and a DSA private key you can configure both in parallel (to also allow the use of DSA ciphers, etc.)

setCertificate(long, String, String, String) - Static method in class io.netty.internal.tcnative.SSLContext
Set Certificate Point setCertificateFile at a PEM encoded certificate.
setCertificateBio(long, long, long, String) - Static method in class io.netty.internal.tcnative.SSL
Set Certificate
Point setCertificate at a PEM encoded certificate stored in a BIO.
setCertificateBio(long, long, long, String, int) - Static method in class io.netty.internal.tcnative.SSLContext
Deprecated.
Use SSLContext.setCertificateBio(long, long, long, String) Set Certificate

Point setCertificate at a PEM encoded certificate stored in a BIO. If the certificate is encrypted, then you will be prompted for a pass phrase. Note that a kill -HUP will prompt again. A test certificate can be generated with `make certificate' under built time. Keep in mind that if you've both a RSA and a DSA certificate you can configure both in parallel (to also allow the use of DSA ciphers, etc.)

If the key is not combined with the certificate, use key param to point at the key file. Keep in mind that if you've both a RSA and a DSA private key you can configure both in parallel (to also allow the use of DSA ciphers, etc.)

setCertificateBio(long, long, long, String) - Static method in class io.netty.internal.tcnative.SSLContext
Set Certificate Point setCertificate at a PEM encoded certificate stored in a BIO.
setCertificateChainBio(long, long, boolean) - Static method in class io.netty.internal.tcnative.SSL
Set BIO of PEM-encoded Server CA Certificates This directive sets the optional all-in-one file where you can assemble the certificates of Certification Authorities (CA) which form the certificate chain of the server certificate.
setCertificateChainBio(long, long, boolean) - Static method in class io.netty.internal.tcnative.SSLContext
Set BIO of PEM-encoded Server CA Certificates This directive sets the optional all-in-one file where you can assemble the certificates of Certification Authorities (CA) which form the certificate chain of the server certificate.
setCertificateChainFile(long, String, boolean) - Static method in class io.netty.internal.tcnative.SSLContext
Set File of PEM-encoded Server CA Certificates
This directive sets the optional all-in-one file where you can assemble the certificates of Certification Authorities (CA) which form the certificate chain of the server certificate.
setCertRequestedCallback(long, CertificateRequestedCallback) - Static method in class io.netty.internal.tcnative.SSLContext
Allow to hook CertificateRequestedCallback into the certificate choosing process.
setCertVerifyCallback(long, CertificateVerifier) - Static method in class io.netty.internal.tcnative.SSLContext
Allow to hook CertificateVerifier into the handshake processing.
setCipherSuite(long, String) - Static method in class io.netty.internal.tcnative.SSLContext
Cipher Suite available for negotiation in SSL handshake.
setCipherSuites(long, String) - Static method in class io.netty.internal.tcnative.SSL
Returns the cipher suites available for negotiation in SSL handshake.
setContextId(long, String) - Static method in class io.netty.internal.tcnative.SSLContext
Set Session context id.
setHostNameValidation(long, int, String) - Static method in class io.netty.internal.tcnative.SSL
setMode(long, int) - Static method in class io.netty.internal.tcnative.SSLContext
Call SSL_CTX_set_mode
setNpnProtos(long, String[], int) - Static method in class io.netty.internal.tcnative.SSLContext
Set next protocol for next protocol negotiation extension
setOptions(long, int) - Static method in class io.netty.internal.tcnative.SSL
Set OpenSSL Option.
setOptions(long, int) - Static method in class io.netty.internal.tcnative.SSLContext
Set OpenSSL Option.
setSessionCacheMode(long, long) - Static method in class io.netty.internal.tcnative.SSLContext
Set the mode of the internal session cache and return the previous used mode.
setSessionCacheSize(long, long) - Static method in class io.netty.internal.tcnative.SSLContext
Set the size of the internal session cache.
setSessionCacheTimeout(long, long) - Static method in class io.netty.internal.tcnative.SSLContext
Set the timeout for the internal session cache in seconds.
setSessionIdContext(long, byte[]) - Static method in class io.netty.internal.tcnative.SSLContext
Set the context within which session be reused (server side only) http://www.openssl.org/docs/ssl/SSL_CTX_set_session_id_context.html
setSessionTicketKeys(long, SessionTicketKey[]) - Static method in class io.netty.internal.tcnative.SSLContext
Set TLS session ticket keys.
setShutdown(long, int) - Static method in class io.netty.internal.tcnative.SSL
SSL_set_shutdown
setState(long, int) - Static method in class io.netty.internal.tcnative.SSL
Call SSL_set_state.
setTimeout(long, long) - Static method in class io.netty.internal.tcnative.SSL
SSL_set_timeout
setTlsExtHostName(long, String) - Static method in class io.netty.internal.tcnative.SSL
Call SSL_set_tlsext_host_name
setTmpDHLength(long, int) - Static method in class io.netty.internal.tcnative.SSLContext
Set length of the DH to use.
setVerify(long, int, int) - Static method in class io.netty.internal.tcnative.SSL
Set Type of Client Certificate verification and Maximum depth of CA Certificates in Client Certificate verification.
setVerify(long, int, int) - Static method in class io.netty.internal.tcnative.SSLContext
Set Type of Client Certificate verification and Maximum depth of CA Certificates in Client Certificate verification.
shutdownSSL(long) - Static method in class io.netty.internal.tcnative.SSL
SSL_shutdown
size(ByteBuffer) - Static method in class io.netty.internal.tcnative.Buffer
Returns the allocated memory size of the ByteBuffer.
SSL - Class in io.netty.internal.tcnative
 
SSL_CVERIFY_IGNORED - Static variable in class io.netty.internal.tcnative.SSL
 
SSL_CVERIFY_NONE - Static variable in class io.netty.internal.tcnative.SSL
 
SSL_CVERIFY_OPTIONAL - Static variable in class io.netty.internal.tcnative.SSL
 
SSL_CVERIFY_REQUIRED - Static variable in class io.netty.internal.tcnative.SSL
 
SSL_ERROR_NONE - Static variable in class io.netty.internal.tcnative.SSL
 
SSL_ERROR_SSL - Static variable in class io.netty.internal.tcnative.SSL
 
SSL_ERROR_SYSCALL - Static variable in class io.netty.internal.tcnative.SSL
 
SSL_ERROR_WANT_ACCEPT - Static variable in class io.netty.internal.tcnative.SSL
 
SSL_ERROR_WANT_CONNECT - Static variable in class io.netty.internal.tcnative.SSL
 
SSL_ERROR_WANT_READ - Static variable in class io.netty.internal.tcnative.SSL
 
SSL_ERROR_WANT_WRITE - Static variable in class io.netty.internal.tcnative.SSL
 
SSL_ERROR_WANT_X509_LOOKUP - Static variable in class io.netty.internal.tcnative.SSL
 
SSL_ERROR_ZERO_RETURN - Static variable in class io.netty.internal.tcnative.SSL
 
SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER - Static variable in class io.netty.internal.tcnative.SSL
 
SSL_MODE_CLIENT - Static variable in class io.netty.internal.tcnative.SSL
 
SSL_MODE_COMBINED - Static variable in class io.netty.internal.tcnative.SSL
 
SSL_MODE_ENABLE_PARTIAL_WRITE - Static variable in class io.netty.internal.tcnative.SSL
 
SSL_MODE_RELEASE_BUFFERS - Static variable in class io.netty.internal.tcnative.SSL
 
SSL_MODE_SERVER - Static variable in class io.netty.internal.tcnative.SSL
 
SSL_OP_CIPHER_SERVER_PREFERENCE - Static variable in class io.netty.internal.tcnative.SSL
 
SSL_OP_NO_COMPRESSION - Static variable in class io.netty.internal.tcnative.SSL
 
SSL_OP_NO_SSLv2 - Static variable in class io.netty.internal.tcnative.SSL
 
SSL_OP_NO_SSLv3 - Static variable in class io.netty.internal.tcnative.SSL
 
SSL_OP_NO_TICKET - Static variable in class io.netty.internal.tcnative.SSL
 
SSL_OP_NO_TLSv1 - Static variable in class io.netty.internal.tcnative.SSL
 
SSL_OP_NO_TLSv1_1 - Static variable in class io.netty.internal.tcnative.SSL
 
SSL_OP_NO_TLSv1_2 - Static variable in class io.netty.internal.tcnative.SSL
 
SSL_PROTOCOL_ALL - Static variable in class io.netty.internal.tcnative.SSL
 
SSL_PROTOCOL_NONE - Static variable in class io.netty.internal.tcnative.SSL
 
SSL_PROTOCOL_SSLV2 - Static variable in class io.netty.internal.tcnative.SSL
 
SSL_PROTOCOL_SSLV3 - Static variable in class io.netty.internal.tcnative.SSL
 
SSL_PROTOCOL_TLS - Static variable in class io.netty.internal.tcnative.SSL
TLS_*method according to https://www.openssl.org/docs/manmaster/ssl/SSL_CTX_new.html
SSL_PROTOCOL_TLSV1 - Static variable in class io.netty.internal.tcnative.SSL
 
SSL_PROTOCOL_TLSV1_1 - Static variable in class io.netty.internal.tcnative.SSL
 
SSL_PROTOCOL_TLSV1_2 - Static variable in class io.netty.internal.tcnative.SSL
 
SSL_RECEIVED_SHUTDOWN - Static variable in class io.netty.internal.tcnative.SSL
 
SSL_SELECTOR_FAILURE_CHOOSE_MY_LAST_PROTOCOL - Static variable in class io.netty.internal.tcnative.SSL
 
SSL_SELECTOR_FAILURE_NO_ADVERTISE - Static variable in class io.netty.internal.tcnative.SSL
 
SSL_SENT_SHUTDOWN - Static variable in class io.netty.internal.tcnative.SSL
 
SSL_SESS_CACHE_OFF - Static variable in class io.netty.internal.tcnative.SSL
 
SSL_SESS_CACHE_SERVER - Static variable in class io.netty.internal.tcnative.SSL
 
SSL_ST_ACCEPT - Static variable in class io.netty.internal.tcnative.SSL
 
SSL_ST_CONNECT - Static variable in class io.netty.internal.tcnative.SSL
 
SSLContext - Class in io.netty.internal.tcnative
 

T

TICKET_KEY_SIZE - Static variable in class io.netty.internal.tcnative.SessionTicketKey
Size of session ticket key
TLS_CT_DSS_FIXED_DH - Static variable in interface io.netty.internal.tcnative.CertificateRequestedCallback
 
TLS_CT_DSS_SIGN - Static variable in interface io.netty.internal.tcnative.CertificateRequestedCallback
 
TLS_CT_ECDSA_FIXED_ECDH - Static variable in interface io.netty.internal.tcnative.CertificateRequestedCallback
 
TLS_CT_ECDSA_SIGN - Static variable in interface io.netty.internal.tcnative.CertificateRequestedCallback
 
TLS_CT_RSA_FIXED_DH - Static variable in interface io.netty.internal.tcnative.CertificateRequestedCallback
 
TLS_CT_RSA_FIXED_ECDH - Static variable in interface io.netty.internal.tcnative.CertificateRequestedCallback
 
TLS_CT_RSA_SIGN - Static variable in interface io.netty.internal.tcnative.CertificateRequestedCallback
The types contained in the keyTypeBytes array.

V

verify(long, byte[][], String) - Method in interface io.netty.internal.tcnative.CertificateVerifier
Returns true if the passed in certificate chain could be verified and so the handshake should be successful, false otherwise.
version() - Static method in class io.netty.internal.tcnative.SSL
 
versionString() - Static method in class io.netty.internal.tcnative.SSL
 

W

writeToSSL(long, long, int) - Static method in class io.netty.internal.tcnative.SSL
SSL_write

X

X509_CHECK_FLAG_ALWAYS_CHECK_SUBJECT - Static variable in class io.netty.internal.tcnative.SSL
 
X509_CHECK_FLAG_MULTI_LABEL_WILDCARDS - Static variable in class io.netty.internal.tcnative.SSL
 
X509_CHECK_FLAG_NO_PARTIAL_WILD_CARDS - Static variable in class io.netty.internal.tcnative.SSL
 
X509_CHECK_FLAG_NO_WILD_CARDS - Static variable in class io.netty.internal.tcnative.SSL
 
X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_AKID_SKID_MISMATCH - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_APPLICATION_VERIFICATION - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_CERT_CHAIN_TOO_LONG - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_CERT_HAS_EXPIRED - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_CERT_NOT_YET_VALID - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_CERT_REJECTED - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_CERT_REVOKED - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_CERT_SIGNATURE_FAILURE - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_CERT_UNTRUSTED - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_CRL_HAS_EXPIRED - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_CRL_NOT_YET_VALID - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_CRL_PATH_VALIDATION_ERROR - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_CRL_SIGNATURE_FAILURE - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_DANE_NO_MATCH - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_DIFFERENT_CRL_SCOPE - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_EMAIL_MISMATCH - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_EXCLUDED_VIOLATION - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_HOSTNAME_MISMATCH - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_INVALID_CA - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_INVALID_EXTENSION - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_INVALID_NON_CA - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_INVALID_POLICY_EXTENSION - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_INVALID_PURPOSE - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_IP_ADDRESS_MISMATCH - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_KEYUSAGE_NO_CERTSIGN - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_KEYUSAGE_NO_CRL_SIGN - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_NO_EXPLICIT_POLICY - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_OUT_OF_MEM - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_PATH_LENGTH_EXCEEDED - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_PATH_LOOP - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_PERMITTED_VIOLATION - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_SUBJECT_ISSUER_MISMATCH - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_SUBTREE_MINMAX - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_SUITE_B_CANNOT_SIGN_P_384_WITH_P_256 - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_SUITE_B_INVALID_ALGORITHM - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_SUITE_B_INVALID_CURVE - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_SUITE_B_INVALID_SIGNATURE_ALGORITHM - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_SUITE_B_INVALID_VERSION - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_SUITE_B_LOS_NOT_ALLOWED - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_UNABLE_TO_GET_CRL - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_UNNESTED_RESOURCE - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_UNSPECIFIED - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_ERR_UNSUPPORTED_NAME_SYNTAX - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
X509_V_OK - Static variable in interface io.netty.internal.tcnative.CertificateVerifier
 
A B C D F G H I L M N P R S T V W X 

Copyright © 2008–2017 The Netty Project. All rights reserved.