Uses of Class
org.opcfoundation.ua.transport.security.Cert

Packages that use Cert
org.opcfoundation.ua.application The code in this package is for application developer. 
org.opcfoundation.ua.cert   
org.opcfoundation.ua.transport This package contains SecureChannel and related interfaces 
org.opcfoundation.ua.transport.https Code for creating a HTTPS based secure channel 
org.opcfoundation.ua.transport.security This folder contains common security related classes 
org.opcfoundation.ua.transport.tcp.io   
org.opcfoundation.ua.transport.tcp.nio   
org.opcfoundation.ua.utils Utility classes 
 

Uses of Cert in org.opcfoundation.ua.application
 

Methods in org.opcfoundation.ua.application that return Cert
 Cert Session.getClientCertificate()
          Getter for the field clientCertificate.
 Cert Session.getServerCertificate()
          Getter for the field serverCertificate.
 

Methods in org.opcfoundation.ua.application with parameters of type Cert
 SecureChannel Client.createSecureChannel(String connectUrl, String endpointUri, SecurityMode mode, Cert remoteCertificate)
          Create and open a secure channel.
 ServiceChannel Client.createServiceChannel(String connectUrl, String endpointUri, SecurityMode mode, Cert remoteCertificate)
          Create and open a service channel.
 

Uses of Cert in org.opcfoundation.ua.cert
 

Methods in org.opcfoundation.ua.cert that return types with arguments of type Cert
 Set<Cert> PkiDirectoryCertificateStore.getRejectedCerts()
           
 Set<Cert> CertificateStore.getRejectedCerts()
          Get all certificates that are stored as Rejected.
 Set<Cert> PkiDirectoryCertificateStore.getTrustedCerts()
           
 Set<Cert> CertificateStore.getTrustedCerts()
          Get all certificates that are stored as Trusted.
 

Methods in org.opcfoundation.ua.cert with parameters of type Cert
 void PkiDirectoryCertificateStore.addCertificate(ValidationResult type, Cert certificate)
           
 void CertificateStore.addCertificate(ValidationResult type, Cert certificate)
          Add a certificate to the store.
 void PkiDirectoryCertificateStore.addRejectedCertificate(Cert certificate)
          Add a certificate to the rejected certificates.
 void PkiDirectoryCertificateStore.addTrustedCertificate(Cert certificate)
          Add a certificate to the trusted certificates.
 File PkiDirectoryCertificateStore.getFileForCert(Cert cert)
          Returns File for the given Certificate.
 void DefaultCertificateStoreListener.onRejectedCertificateAdded(Cert cert)
          Called after DefaultCertificateValidator adds a Certificate to Rejected certificates
 void DefaultCertificateStoreListener.onTrustedCertificateAdded(Cert cert)
          Called after DefaultCertificateValidator adds a Certificate to Trusted certificates
 ValidationResult DefaultCertificateValidatorListener.onValidate(Cert certificate, ApplicationDescription applicationDescription, EnumSet<CertificateCheck> passedChecks)
          Handle certificate validation.
 StatusCode DefaultCertificateValidator.validateCertificate(ApplicationDescription applicationDescription, Cert cert)
           
 StatusCode DefaultCertificateValidator.validateCertificate(Cert c)
           
 

Uses of Cert in org.opcfoundation.ua.transport
 

Methods in org.opcfoundation.ua.transport that return Cert
 Cert ServerSecureChannel.getRemoteCertificate()
          Get Remote Application Instance Certificate
 Cert TransportChannelSettings.getServerCertificate()
          getServerCertificate.
 

Constructors in org.opcfoundation.ua.transport with parameters of type Cert
TransportChannelSettings(EndpointDescription description, EndpointConfiguration configuration, Cert clientCertificate, PrivKey privateKey, CertificateValidator certificateValidator, NamespaceTable namespaceUris)
          Create Transport channel settings for a opctcp connection
 

Uses of Cert in org.opcfoundation.ua.transport.https
 

Methods in org.opcfoundation.ua.transport.https that return Cert
 Cert HttpsServerSecureChannel.getRemoteCertificate()
          getRemoteCertificate.
 

Methods in org.opcfoundation.ua.transport.https with parameters of type Cert
 void HttpsSettings.setKeyPair(KeyPair keypair, Cert... caCerts)
          Set keypair of a https application.
 void HttpsSettings.setKeyPairs(KeyPair[] keypairs, Cert... caCerts)
          Set keypairs to a https application.
 

Uses of Cert in org.opcfoundation.ua.transport.security
 

Fields in org.opcfoundation.ua.transport.security declared as Cert
 Cert KeyPair.certificate
           
 

Methods in org.opcfoundation.ua.transport.security that return Cert
 Cert KeyPair.getCertificate()
          Getter for the field certificate.
 Cert SecurityConfiguration.getRemoteCertificate2()
          getRemoteCertificate2.
static Cert Cert.load(File file)
          Load X.509 Certificate from a file
static Cert Cert.load(URL url)
          Load X.509 Certificate from an url
 

Methods in org.opcfoundation.ua.transport.security with parameters of type Cert
 void CertificateValidatorImpl.addTrustedCertificate(Cert certificate)
          Deprecated. addTrustedCertificate.
 void CertificateValidatorImpl.addTrustedSigner(Cert signer)
          Deprecated. addTrustedSigner.
 boolean SecurityPolicy.isUsableWith(Cert cert)
          Checks if a certificate is useable for this security policy.
 void PrivKey.saveToKeyStore(Cert cert, File file, String privateKeyPassword, String keyStorePassword, String keyStoreType)
          Save the identity to a password protected keystore.
 StatusCode CertificateValidatorImpl.validateCertificate(ApplicationDescription applicationDescription, Cert cert)
          Deprecated.  
 StatusCode CertificateValidator.validateCertificate(ApplicationDescription applicationDescription, Cert cert)
          Validate the certificate against the ApplicationDescription.
 StatusCode AllowAllCertificatesValidator.validateCertificate(ApplicationDescription applicationDescription, Cert cert)
           
 StatusCode CertificateValidatorImpl.validateCertificate(Cert c)
          Deprecated. Validate (peer's) certificate
 StatusCode CertificateValidator.validateCertificate(Cert cert)
          Validate (peer's) certificate
 StatusCode AllowAllCertificatesValidator.validateCertificate(Cert c)
          Validate (peer's) certificate
 

Constructors in org.opcfoundation.ua.transport.security with parameters of type Cert
CertificateValidatorImpl(Cert... trustedCertificates)
          Deprecated. Constructor for CertificateValidatorImpl.
KeyPair(Cert certificate, PrivKey privateKey)
          Constructor for KeyPair.
SecurityConfiguration(SecurityMode mode, KeyPair localApplicationInstanceCertificate, Cert remoteCertificate)
          Constructor for SecurityConfiguration.
 

Uses of Cert in org.opcfoundation.ua.transport.tcp.io
 

Methods in org.opcfoundation.ua.transport.tcp.io that return Cert
 Cert OpcTcpSettings.getClientCertificate()
          Getter for the field clientCertificate.
 

Methods in org.opcfoundation.ua.transport.tcp.io with parameters of type Cert
 void OpcTcpSettings.setClientCertificate(Cert clientCertificate)
          Setter for the field clientCertificate.
 

Uses of Cert in org.opcfoundation.ua.transport.tcp.nio
 

Methods in org.opcfoundation.ua.transport.tcp.nio that return Cert
 Cert OpcTcpServerSecureChannel.getRemoteCertificate()
          getRemoteCertificate.
 

Uses of Cert in org.opcfoundation.ua.utils
 

Methods in org.opcfoundation.ua.utils with parameters of type Cert
static X509IdentityToken EndpointUtil.createX509IdentityToken(EndpointDescription ep, byte[] serverNonce, Cert certificate, PrivateKey key, SignatureData signatureData)
          createX509IdentityToken.
static String CertificateUtils.getApplicationUriOfCertificate(Cert certificate)
          getApplicationUriOfCertificate.
 



Copyright © 2018. All rights reserved.