Uses of Class
org.wildfly.security.ssl.CipherSuitePredicate
Packages that use CipherSuitePredicate
-
Uses of CipherSuitePredicate in org.wildfly.security.ssl
Methods in org.wildfly.security.ssl that return CipherSuitePredicateModifier and TypeMethodDescriptionstatic CipherSuitePredicateCipherSuitePredicate.matchAll(CipherSuitePredicate... predicates) Match all of the given predicates.static CipherSuitePredicateCipherSuitePredicate.matchAnonDH()Match all anonymous ciphers which use Diffie-Hellman key exchange.static CipherSuitePredicateCipherSuitePredicate.matchAny(CipherSuitePredicate... predicates) Match any of the given predicates.static CipherSuitePredicateCipherSuitePredicate.matchAuthentication(EnumSet<Authentication> authentications) Return a predicate which matches any of the given authentication schemes.static CipherSuitePredicateCipherSuitePredicate.matchAuthentication(Authentication authentication) Return a predicate which matches the given authentication scheme.static CipherSuitePredicateCipherSuitePredicate.matchAuthentication(Authentication... authentications) Return a predicate which matches any of the given authentication schemes.static CipherSuitePredicateCipherSuitePredicate.matchDefaultDeletes()Return a predicate which matches all cipher suites that would be fully deleted in the default selector configuration.static CipherSuitePredicateCipherSuitePredicate.matchDigest(EnumSet<Digest> digests) Return a predicate which matches any of the given digest schemes.static CipherSuitePredicateCipherSuitePredicate.matchDigest(Digest digest) Return a predicate which matches the given digest scheme.static CipherSuitePredicateCipherSuitePredicate.matchDigest(Digest... digests) Return a predicate which matches any of the given digest schemes.static CipherSuitePredicateCipherSuitePredicate.matchEncryption(EnumSet<Encryption> encryptions) Return a predicate which matches any of the given encryption schemes.static CipherSuitePredicateCipherSuitePredicate.matchEncryption(Encryption encryption) Return a predicate which matches the given encryption scheme.static CipherSuitePredicateCipherSuitePredicate.matchEncryption(Encryption... encryptions) Return a predicate which matches any of the given encryption schemes.static CipherSuitePredicateCipherSuitePredicate.matchExport()Return a predicate which matches all exportable cipher suites.static CipherSuitePredicateCipherSuitePredicate.matchFalse()Match no possible cipher suites.static CipherSuitePredicateCipherSuitePredicate.matchFips()Return a predicate which matches all FIPS cipher suites.static CipherSuitePredicateCipherSuitePredicate.matchKeyAgreement(KeyAgreement keyAgreement) Return a predicate which matches the given key exchange scheme.static CipherSuitePredicateCipherSuitePredicate.matchKeyExchange(EnumSet<KeyAgreement> keyAgreements) Return a predicate which matches any of the given key exchange schemes.static CipherSuitePredicateCipherSuitePredicate.matchKeyExchange(KeyAgreement... keyAgreements) Return a predicate which matches any of the given key exchange schemes.static CipherSuitePredicateCipherSuitePredicate.matchLevel(EnumSet<SecurityLevel> levels) Return a predicate which matches any of the given security levels.static CipherSuitePredicateCipherSuitePredicate.matchLevel(SecurityLevel level) Return a predicate which matches the given security level.static CipherSuitePredicateCipherSuitePredicate.matchLevel(SecurityLevel... levels) Return a predicate which matches any of the given security levels.static CipherSuitePredicateCipherSuitePredicate.matchLevelLessThan(SecurityLevel level) Return a predicate which matches all security levels less than the given level.static CipherSuitePredicateReturn a predicate which matches a cipher suite with the given name.static CipherSuitePredicateCipherSuitePredicate.matchNonExport()Return a predicate which matches all non-exportable cipher suites.static CipherSuitePredicateCipherSuitePredicate.matchNonFips()Return a predicate which matches all non-FIPS cipher suites.static CipherSuitePredicateCipherSuitePredicate.matchNot(CipherSuitePredicate predicate) Invert the given predicate.static CipherSuitePredicateCipherSuitePredicate.matchOpenSslAll()Match all cipher suites except for anonymous and encryptionless suites, which must be explicitly enabled.static CipherSuitePredicateCipherSuitePredicate.matchOpenSslComplementOfAll()Match all cipher suites included bymatchOpenSslAll()but are disabled by default (generally, anonymous Diffie-Hellman suites including elliptic curve suites).static CipherSuitePredicateCipherSuitePredicate.matchOpenSslComplementOfDefault()Match all of the cipher suites which are added by OpenSSL when using the specialCOMPLEMENTOFDEFAULTrule.static CipherSuitePredicateCipherSuitePredicate.matchOpenSslDefaultDeletes()Match all of the cipher suites which are automatically deleted by OpenSSL when using the specialDEFAULTrule.static CipherSuitePredicateCipherSuitePredicate.matchProtocol(EnumSet<Protocol> protocols) Return a predicate which matches any of the given protocols.static CipherSuitePredicateCipherSuitePredicate.matchProtocol(Protocol protocol) Return a predicate which matches the given protocol.static CipherSuitePredicateCipherSuitePredicate.matchProtocol(Protocol... protocols) Return a predicate which matches any of the given protocols.static CipherSuitePredicateCipherSuitePredicate.matchTrue()Match all possible cipher suites.Methods in org.wildfly.security.ssl with parameters of type CipherSuitePredicateModifier and TypeMethodDescriptionCipherSuiteSelector.add(CipherSuitePredicate predicate) Add all cipher suites which are matched by the given predicate.CipherSuiteSelector.deleteFully(CipherSuitePredicate predicate) Permanently delete all cipher suites which are matched by the given predicate.static CipherSuitePredicateCipherSuitePredicate.matchAll(CipherSuitePredicate... predicates) Match all of the given predicates.static CipherSuitePredicateCipherSuitePredicate.matchAny(CipherSuitePredicate... predicates) Match any of the given predicates.static CipherSuitePredicateCipherSuitePredicate.matchNot(CipherSuitePredicate predicate) Invert the given predicate.CipherSuiteSelector.pushToEnd(CipherSuitePredicate predicate) Push all cipher suites which are matched by the given predicate to the end of the enabled ciphers list.CipherSuiteSelector.remove(CipherSuitePredicate predicate) Remove all cipher suites which are matched by the given predicate.