Uses of Class
org.wildfly.security.asn1.DEREncoder
-
Packages that use DEREncoder Package Description org.wildfly.security.sasl.entity org.wildfly.security.x500.cert Package containing APIs for generating certificates and certificate signing requests. -
-
Uses of DEREncoder in org.wildfly.security.sasl.entity
Methods in org.wildfly.security.sasl.entity with parameters of type DEREncoder Modifier and Type Method Description static void
EntityUtil. encodeAlgorithmIdentifier(DEREncoder encoder, String algorithm)
Encode anAlgorithmIdentifier
using the given DER encoder, whereAlgorithmIdentifier
is defined as:static void
EntityUtil. encodeAlgorithmIdentifier(DEREncoder encoder, String objectIdentifier, boolean omitParametersField)
Encode anAlgorithmIdentifier
without any parameters using the given DER encoder and object identifier, whereAlgorithmIdentifier
is defined as:static void
EntityUtil. encodeGeneralNames(DEREncoder encoder, String subjectName, Collection<List<?>> subjectAltNames)
static void
EntityUtil. encodeGeneralNames(DEREncoder encoder, List<GeneralName> generalNames)
Encode aGeneralNames
element using the given DER encoder, whereGeneralNames
is defined as:static void
EntityUtil. encodeGeneralNames(DEREncoder encoder, GeneralName generalName)
Encode aGeneralNames
element consisting of one general name using the given DER encoder.static byte[]
EntityUtil. encodeRandomNumber(DEREncoder encoder, SecureRandom secureRandom)
Encode aRandomNumber
element using the given DER encoder, whereRandomNumber
is defined as:static void
EntityUtil. encodeTrustedAuthorities(DEREncoder encoder, List<TrustedAuthority> trustedAuthorities)
Encode an ASN.1 sequence of trusted authorities using the given DER encoder.static void
EntityUtil. encodeX509CertificateChain(DEREncoder encoder, X509Certificate[] certChain)
Encode an ASN.1 set of certificates using the given DER encoder and the givenX509Certificate
chain. -
Uses of DEREncoder in org.wildfly.security.x500.cert
Methods in org.wildfly.security.x500.cert with parameters of type DEREncoder Modifier and Type Method Description private void
PKCS10CertificateSigningRequest.Builder. encodeAlgorithmIdentifier(DEREncoder encoder)
Encode anAlgorithmIdentifier
using the given DER encoder.private void
PKCS10CertificateSigningRequest.Builder. encodeAttributes(DEREncoder encoder)
EncodeAttributes
using the given DER encoder.private void
PKCS10CertificateSigningRequest.Builder. encodeCertificationRequest(DEREncoder encoder)
Encode aCertificationRequest
using the given DER encoder.private void
PKCS10CertificateSigningRequest.Builder. encodeCertificationRequestInfo(DEREncoder encoder)
Encode aCertificationRequestInfo
using the given DER encoder.private static void
PKCS10CertificateSigningRequest.Builder. encodeExtension(DEREncoder encoder, X509CertificateExtension extension)
Encode anExtension
using the given DER encoder.private void
PKCS10CertificateSigningRequest.Builder. encodeExtensionRequest(DEREncoder encoder)
Encode anExtensionRequest
using the given DER encoder.
-