sun.security.x509.X509CRLImpl Java Examples

The following examples show how to use sun.security.x509.X509CRLImpl. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: X509CRL.java    From jdk1.8-source-analysis with Apache License 2.0 6 votes vote down vote up
/**
 * Compares this CRL for equality with the given
 * object. If the {@code other} object is an
 * {@code instanceof} {@code X509CRL}, then
 * its encoded form is retrieved and compared with the
 * encoded form of this CRL.
 *
 * @param other the object to test for equality with this CRL.
 *
 * @return true iff the encoded forms of the two CRLs
 * match, false otherwise.
 */
public boolean equals(Object other) {
    if (this == other) {
        return true;
    }
    if (!(other instanceof X509CRL)) {
        return false;
    }
    try {
        byte[] thisCRL = X509CRLImpl.getEncodedInternal(this);
        byte[] otherCRL = X509CRLImpl.getEncodedInternal((X509CRL)other);

        return Arrays.equals(thisCRL, otherCRL);
    } catch (CRLException e) {
        return false;
    }
}
 
Example #2
Source File: X509CRL.java    From jdk8u_jdk with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Compares this CRL for equality with the given
 * object. If the {@code other} object is an
 * {@code instanceof} {@code X509CRL}, then
 * its encoded form is retrieved and compared with the
 * encoded form of this CRL.
 *
 * @param other the object to test for equality with this CRL.
 *
 * @return true iff the encoded forms of the two CRLs
 * match, false otherwise.
 */
public boolean equals(Object other) {
    if (this == other) {
        return true;
    }
    if (!(other instanceof X509CRL)) {
        return false;
    }
    try {
        byte[] thisCRL = X509CRLImpl.getEncodedInternal(this);
        byte[] otherCRL = X509CRLImpl.getEncodedInternal((X509CRL)other);

        return Arrays.equals(thisCRL, otherCRL);
    } catch (CRLException e) {
        return false;
    }
}
 
Example #3
Source File: X509CRL.java    From jdk8u-jdk with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Compares this CRL for equality with the given
 * object. If the {@code other} object is an
 * {@code instanceof} {@code X509CRL}, then
 * its encoded form is retrieved and compared with the
 * encoded form of this CRL.
 *
 * @param other the object to test for equality with this CRL.
 *
 * @return true iff the encoded forms of the two CRLs
 * match, false otherwise.
 */
public boolean equals(Object other) {
    if (this == other) {
        return true;
    }
    if (!(other instanceof X509CRL)) {
        return false;
    }
    try {
        byte[] thisCRL = X509CRLImpl.getEncodedInternal(this);
        byte[] otherCRL = X509CRLImpl.getEncodedInternal((X509CRL)other);

        return Arrays.equals(thisCRL, otherCRL);
    } catch (CRLException e) {
        return false;
    }
}
 
Example #4
Source File: X509CRL.java    From dragonwell8_jdk with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Compares this CRL for equality with the given
 * object. If the {@code other} object is an
 * {@code instanceof} {@code X509CRL}, then
 * its encoded form is retrieved and compared with the
 * encoded form of this CRL.
 *
 * @param other the object to test for equality with this CRL.
 *
 * @return true iff the encoded forms of the two CRLs
 * match, false otherwise.
 */
public boolean equals(Object other) {
    if (this == other) {
        return true;
    }
    if (!(other instanceof X509CRL)) {
        return false;
    }
    try {
        byte[] thisCRL = X509CRLImpl.getEncodedInternal(this);
        byte[] otherCRL = X509CRLImpl.getEncodedInternal((X509CRL)other);

        return Arrays.equals(thisCRL, otherCRL);
    } catch (CRLException e) {
        return false;
    }
}
 
Example #5
Source File: X509CRL.java    From openjdk-8 with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Compares this CRL for equality with the given
 * object. If the {@code other} object is an
 * {@code instanceof} {@code X509CRL}, then
 * its encoded form is retrieved and compared with the
 * encoded form of this CRL.
 *
 * @param other the object to test for equality with this CRL.
 *
 * @return true iff the encoded forms of the two CRLs
 * match, false otherwise.
 */
public boolean equals(Object other) {
    if (this == other) {
        return true;
    }
    if (!(other instanceof X509CRL)) {
        return false;
    }
    try {
        byte[] thisCRL = X509CRLImpl.getEncodedInternal(this);
        byte[] otherCRL = X509CRLImpl.getEncodedInternal((X509CRL)other);

        return Arrays.equals(thisCRL, otherCRL);
    } catch (CRLException e) {
        return false;
    }
}
 
Example #6
Source File: X509CRL.java    From openjdk-8-source with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Compares this CRL for equality with the given
 * object. If the {@code other} object is an
 * {@code instanceof} {@code X509CRL}, then
 * its encoded form is retrieved and compared with the
 * encoded form of this CRL.
 *
 * @param other the object to test for equality with this CRL.
 *
 * @return true iff the encoded forms of the two CRLs
 * match, false otherwise.
 */
public boolean equals(Object other) {
    if (this == other) {
        return true;
    }
    if (!(other instanceof X509CRL)) {
        return false;
    }
    try {
        byte[] thisCRL = X509CRLImpl.getEncodedInternal(this);
        byte[] otherCRL = X509CRLImpl.getEncodedInternal((X509CRL)other);

        return Arrays.equals(thisCRL, otherCRL);
    } catch (CRLException e) {
        return false;
    }
}
 
Example #7
Source File: X509CRL.java    From jdk8u60 with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Compares this CRL for equality with the given
 * object. If the {@code other} object is an
 * {@code instanceof} {@code X509CRL}, then
 * its encoded form is retrieved and compared with the
 * encoded form of this CRL.
 *
 * @param other the object to test for equality with this CRL.
 *
 * @return true iff the encoded forms of the two CRLs
 * match, false otherwise.
 */
public boolean equals(Object other) {
    if (this == other) {
        return true;
    }
    if (!(other instanceof X509CRL)) {
        return false;
    }
    try {
        byte[] thisCRL = X509CRLImpl.getEncodedInternal(this);
        byte[] otherCRL = X509CRLImpl.getEncodedInternal((X509CRL)other);

        return Arrays.equals(thisCRL, otherCRL);
    } catch (CRLException e) {
        return false;
    }
}
 
Example #8
Source File: X509CRL.java    From hottub with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Compares this CRL for equality with the given
 * object. If the {@code other} object is an
 * {@code instanceof} {@code X509CRL}, then
 * its encoded form is retrieved and compared with the
 * encoded form of this CRL.
 *
 * @param other the object to test for equality with this CRL.
 *
 * @return true iff the encoded forms of the two CRLs
 * match, false otherwise.
 */
public boolean equals(Object other) {
    if (this == other) {
        return true;
    }
    if (!(other instanceof X509CRL)) {
        return false;
    }
    try {
        byte[] thisCRL = X509CRLImpl.getEncodedInternal(this);
        byte[] otherCRL = X509CRLImpl.getEncodedInternal((X509CRL)other);

        return Arrays.equals(thisCRL, otherCRL);
    } catch (CRLException e) {
        return false;
    }
}
 
Example #9
Source File: X509CRL.java    From Java8CN with Apache License 2.0 6 votes vote down vote up
/**
 * Compares this CRL for equality with the given
 * object. If the {@code other} object is an
 * {@code instanceof} {@code X509CRL}, then
 * its encoded form is retrieved and compared with the
 * encoded form of this CRL.
 *
 * @param other the object to test for equality with this CRL.
 *
 * @return true iff the encoded forms of the two CRLs
 * match, false otherwise.
 */
public boolean equals(Object other) {
    if (this == other) {
        return true;
    }
    if (!(other instanceof X509CRL)) {
        return false;
    }
    try {
        byte[] thisCRL = X509CRLImpl.getEncodedInternal(this);
        byte[] otherCRL = X509CRLImpl.getEncodedInternal((X509CRL)other);

        return Arrays.equals(thisCRL, otherCRL);
    } catch (CRLException e) {
        return false;
    }
}
 
Example #10
Source File: X509CRL.java    From jdk8u-dev-jdk with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Compares this CRL for equality with the given
 * object. If the {@code other} object is an
 * {@code instanceof} {@code X509CRL}, then
 * its encoded form is retrieved and compared with the
 * encoded form of this CRL.
 *
 * @param other the object to test for equality with this CRL.
 *
 * @return true iff the encoded forms of the two CRLs
 * match, false otherwise.
 */
public boolean equals(Object other) {
    if (this == other) {
        return true;
    }
    if (!(other instanceof X509CRL)) {
        return false;
    }
    try {
        byte[] thisCRL = X509CRLImpl.getEncodedInternal(this);
        byte[] otherCRL = X509CRLImpl.getEncodedInternal((X509CRL)other);

        return Arrays.equals(thisCRL, otherCRL);
    } catch (CRLException e) {
        return false;
    }
}
 
Example #11
Source File: X509CRL.java    From JDKSourceCode1.8 with MIT License 6 votes vote down vote up
/**
 * Compares this CRL for equality with the given
 * object. If the {@code other} object is an
 * {@code instanceof} {@code X509CRL}, then
 * its encoded form is retrieved and compared with the
 * encoded form of this CRL.
 *
 * @param other the object to test for equality with this CRL.
 *
 * @return true iff the encoded forms of the two CRLs
 * match, false otherwise.
 */
public boolean equals(Object other) {
    if (this == other) {
        return true;
    }
    if (!(other instanceof X509CRL)) {
        return false;
    }
    try {
        byte[] thisCRL = X509CRLImpl.getEncodedInternal(this);
        byte[] otherCRL = X509CRLImpl.getEncodedInternal((X509CRL)other);

        return Arrays.equals(thisCRL, otherCRL);
    } catch (CRLException e) {
        return false;
    }
}
 
Example #12
Source File: X509CRL.java    From jdk8u-jdk with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Compares this CRL for equality with the given
 * object. If the {@code other} object is an
 * {@code instanceof} {@code X509CRL}, then
 * its encoded form is retrieved and compared with the
 * encoded form of this CRL.
 *
 * @param other the object to test for equality with this CRL.
 *
 * @return true iff the encoded forms of the two CRLs
 * match, false otherwise.
 */
public boolean equals(Object other) {
    if (this == other) {
        return true;
    }
    if (!(other instanceof X509CRL)) {
        return false;
    }
    try {
        byte[] thisCRL = X509CRLImpl.getEncodedInternal(this);
        byte[] otherCRL = X509CRLImpl.getEncodedInternal((X509CRL)other);

        return Arrays.equals(thisCRL, otherCRL);
    } catch (CRLException e) {
        return false;
    }
}
 
Example #13
Source File: X509CRL.java    From openjdk-jdk8u with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Compares this CRL for equality with the given
 * object. If the {@code other} object is an
 * {@code instanceof} {@code X509CRL}, then
 * its encoded form is retrieved and compared with the
 * encoded form of this CRL.
 *
 * @param other the object to test for equality with this CRL.
 *
 * @return true iff the encoded forms of the two CRLs
 * match, false otherwise.
 */
public boolean equals(Object other) {
    if (this == other) {
        return true;
    }
    if (!(other instanceof X509CRL)) {
        return false;
    }
    try {
        byte[] thisCRL = X509CRLImpl.getEncodedInternal(this);
        byte[] otherCRL = X509CRLImpl.getEncodedInternal((X509CRL)other);

        return Arrays.equals(thisCRL, otherCRL);
    } catch (CRLException e) {
        return false;
    }
}
 
Example #14
Source File: X509CRL.java    From openjdk-jdk9 with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Compares this CRL for equality with the given
 * object. If the {@code other} object is an
 * {@code instanceof} {@code X509CRL}, then
 * its encoded form is retrieved and compared with the
 * encoded form of this CRL.
 *
 * @param other the object to test for equality with this CRL.
 *
 * @return true iff the encoded forms of the two CRLs
 * match, false otherwise.
 */
public boolean equals(Object other) {
    if (this == other) {
        return true;
    }
    if (!(other instanceof X509CRL)) {
        return false;
    }
    try {
        byte[] thisCRL = X509CRLImpl.getEncodedInternal(this);
        byte[] otherCRL = X509CRLImpl.getEncodedInternal((X509CRL)other);

        return Arrays.equals(thisCRL, otherCRL);
    } catch (CRLException e) {
        return false;
    }
}
 
Example #15
Source File: X509CRL.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Compares this CRL for equality with the given
 * object. If the {@code other} object is an
 * {@code instanceof} {@code X509CRL}, then
 * its encoded form is retrieved and compared with the
 * encoded form of this CRL.
 *
 * @param other the object to test for equality with this CRL.
 *
 * @return true iff the encoded forms of the two CRLs
 * match, false otherwise.
 */
public boolean equals(Object other) {
    if (this == other) {
        return true;
    }
    if (!(other instanceof X509CRL)) {
        return false;
    }
    try {
        byte[] thisCRL = X509CRLImpl.getEncodedInternal(this);
        byte[] otherCRL = X509CRLImpl.getEncodedInternal((X509CRL)other);

        return Arrays.equals(thisCRL, otherCRL);
    } catch (CRLException e) {
        return false;
    }
}
 
Example #16
Source File: AlgorithmChecker.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Check the signature algorithm with the specified public key.
 *
 * @param key the public key to verify the CRL signature
 * @param crl the target CRL
 */
static void check(PublicKey key, X509CRL crl)
                    throws CertPathValidatorException {

    X509CRLImpl x509CRLImpl = null;
    try {
        x509CRLImpl = X509CRLImpl.toImpl(crl);
    } catch (CRLException ce) {
        throw new CertPathValidatorException(ce);
    }

    AlgorithmId algorithmId = x509CRLImpl.getSigAlgId();
    check(key, algorithmId);
}
 
Example #17
Source File: X509CRL.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Returns a hashcode value for this CRL from its
 * encoded form.
 *
 * @return the hashcode value.
 */
public int hashCode() {
    int retval = 0;
    try {
        byte[] crlData = X509CRLImpl.getEncodedInternal(this);
        for (int i = 1; i < crlData.length; i++) {
             retval += crlData[i] * i;
        }
        return retval;
    } catch (CRLException e) {
        return retval;
    }
}
 
Example #18
Source File: AlgorithmChecker.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Check the signature algorithm with the specified public key.
 *
 * @param key the public key to verify the CRL signature
 * @param crl the target CRL
 */
static void check(PublicKey key, X509CRL crl)
                    throws CertPathValidatorException {

    X509CRLImpl x509CRLImpl = null;
    try {
        x509CRLImpl = X509CRLImpl.toImpl(crl);
    } catch (CRLException ce) {
        throw new CertPathValidatorException(ce);
    }

    AlgorithmId algorithmId = x509CRLImpl.getSigAlgId();
    check(key, algorithmId);
}
 
Example #19
Source File: X509Factory.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
private Collection<? extends java.security.cert.CRL>
    parseX509orPKCS7CRL(InputStream is)
    throws CRLException, IOException
{
    Collection<X509CRLImpl> coll = new ArrayList<>();
    byte[] data = readOneBlock(is);
    if (data == null) {
        return new ArrayList<>(0);
    }
    try {
        PKCS7 pkcs7 = new PKCS7(data);
        X509CRL[] crls = pkcs7.getCRLs();
        // CRLs are optional in PKCS #7
        if (crls != null) {
            return Arrays.asList(crls);
        } else {
            // no crls provided
            return new ArrayList<>(0);
        }
    } catch (ParsingException e) {
        while (data != null) {
            coll.add(new X509CRLImpl(data));
            data = readOneBlock(is);
        }
    }
    return coll;
}
 
Example #20
Source File: AlgorithmChecker.java    From j2objc with Apache License 2.0 5 votes vote down vote up
/**
 * Check the signature algorithm with the specified public key.
 *
 * @param key the public key to verify the CRL signature
 * @param crl the target CRL
 */
static void check(PublicKey key, X509CRL crl)
                    throws CertPathValidatorException {

    X509CRLImpl x509CRLImpl = null;
    try {
        x509CRLImpl = X509CRLImpl.toImpl(crl);
    } catch (CRLException ce) {
        throw new CertPathValidatorException(ce);
    }

    AlgorithmId algorithmId = x509CRLImpl.getSigAlgId();
    check(key, algorithmId);
}
 
Example #21
Source File: X509CRL.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Returns a hashcode value for this CRL from its
 * encoded form.
 *
 * @return the hashcode value.
 */
public int hashCode() {
    int retval = 0;
    try {
        byte[] crlData = X509CRLImpl.getEncodedInternal(this);
        for (int i = 1; i < crlData.length; i++) {
             retval += crlData[i] * i;
        }
        return retval;
    } catch (CRLException e) {
        return retval;
    }
}
 
Example #22
Source File: AlgorithmChecker.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Check the signature algorithm with the specified public key.
 *
 * @param key the public key to verify the CRL signature
 * @param crl the target CRL
 * @param variant is the Validator variants of the operation. A null value
 *                passed will set it to Validator.GENERIC.
 */
static void check(PublicKey key, X509CRL crl, String variant)
                    throws CertPathValidatorException {

    X509CRLImpl x509CRLImpl = null;
    try {
        x509CRLImpl = X509CRLImpl.toImpl(crl);
    } catch (CRLException ce) {
        throw new CertPathValidatorException(ce);
    }

    AlgorithmId algorithmId = x509CRLImpl.getSigAlgId();
    check(key, algorithmId, variant);
}
 
Example #23
Source File: X509CRL.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Returns a hashcode value for this CRL from its
 * encoded form.
 *
 * @return the hashcode value.
 */
public int hashCode() {
    int retval = 0;
    try {
        byte[] crlData = X509CRLImpl.getEncodedInternal(this);
        for (int i = 1; i < crlData.length; i++) {
             retval += crlData[i] * i;
        }
        return retval;
    } catch (CRLException e) {
        return retval;
    }
}
 
Example #24
Source File: AlgorithmChecker.java    From jdk8u_jdk with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Check the signature algorithm with the specified public key.
 *
 * @param key the public key to verify the CRL signature
 * @param crl the target CRL
 * @param variant is the Validator variants of the operation. A null value
 *                passed will set it to Validator.GENERIC.
 */
static void check(PublicKey key, X509CRL crl, String variant)
                    throws CertPathValidatorException {

    X509CRLImpl x509CRLImpl = null;
    try {
        x509CRLImpl = X509CRLImpl.toImpl(crl);
    } catch (CRLException ce) {
        throw new CertPathValidatorException(ce);
    }

    AlgorithmId algorithmId = x509CRLImpl.getSigAlgId();
    check(key, algorithmId, variant);
}
 
Example #25
Source File: AlgorithmChecker.java    From Bytecoder with Apache License 2.0 5 votes vote down vote up
/**
 * Check the signature algorithm with the specified public key.
 *
 * @param key the public key to verify the CRL signature
 * @param crl the target CRL
 * @param variant is the Validator variants of the operation. A null value
 *                passed will set it to Validator.GENERIC.
 */
static void check(PublicKey key, X509CRL crl, String variant)
                    throws CertPathValidatorException {

    X509CRLImpl x509CRLImpl = null;
    try {
        x509CRLImpl = X509CRLImpl.toImpl(crl);
    } catch (CRLException ce) {
        throw new CertPathValidatorException(ce);
    }

    AlgorithmId algorithmId = x509CRLImpl.getSigAlgId();
    check(key, algorithmId, variant);
}
 
Example #26
Source File: X509CRL.java    From Bytecoder with Apache License 2.0 5 votes vote down vote up
/**
 * Returns a hashcode value for this CRL from its
 * encoded form.
 *
 * @return the hashcode value.
 */
public int hashCode() {
    int retval = 0;
    try {
        byte[] crlData = X509CRLImpl.getEncodedInternal(this);
        for (int i = 1; i < crlData.length; i++) {
             retval += crlData[i] * i;
        }
        return retval;
    } catch (CRLException e) {
        return retval;
    }
}
 
Example #27
Source File: X509CRL.java    From jdk1.8-source-analysis with Apache License 2.0 5 votes vote down vote up
/**
 * Returns a hashcode value for this CRL from its
 * encoded form.
 *
 * @return the hashcode value.
 */
public int hashCode() {
    int retval = 0;
    try {
        byte[] crlData = X509CRLImpl.getEncodedInternal(this);
        for (int i = 1; i < crlData.length; i++) {
             retval += crlData[i] * i;
        }
        return retval;
    } catch (CRLException e) {
        return retval;
    }
}
 
Example #28
Source File: AlgorithmChecker.java    From jdk8u-dev-jdk with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Check the signature algorithm with the specified public key.
 *
 * @param key the public key to verify the CRL signature
 * @param crl the target CRL
 */
static void check(PublicKey key, X509CRL crl)
                    throws CertPathValidatorException {

    X509CRLImpl x509CRLImpl = null;
    try {
        x509CRLImpl = X509CRLImpl.toImpl(crl);
    } catch (CRLException ce) {
        throw new CertPathValidatorException(ce);
    }

    AlgorithmId algorithmId = x509CRLImpl.getSigAlgId();
    check(key, algorithmId);
}
 
Example #29
Source File: AlgorithmChecker.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Check the signature algorithm with the specified public key.
 *
 * @param key the public key to verify the CRL signature
 * @param crl the target CRL
 * @param variant is the Validator variants of the operation. A null value
 *                passed will set it to Validator.GENERIC.
 */
static void check(PublicKey key, X509CRL crl, String variant)
                    throws CertPathValidatorException {

    X509CRLImpl x509CRLImpl = null;
    try {
        x509CRLImpl = X509CRLImpl.toImpl(crl);
    } catch (CRLException ce) {
        throw new CertPathValidatorException(ce);
    }

    AlgorithmId algorithmId = x509CRLImpl.getSigAlgId();
    check(key, algorithmId, variant);
}
 
Example #30
Source File: X509CRL.java    From jdk8u_jdk with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Returns a hashcode value for this CRL from its
 * encoded form.
 *
 * @return the hashcode value.
 */
public int hashCode() {
    int retval = 0;
    try {
        byte[] crlData = X509CRLImpl.getEncodedInternal(this);
        for (int i = 1; i < crlData.length; i++) {
             retval += crlData[i] * i;
        }
        return retval;
    } catch (CRLException e) {
        return retval;
    }
}