Java Code Examples for java.security.cert.PKIXReason#INVALID_KEY_USAGE

The following examples show how to use java.security.cert.PKIXReason#INVALID_KEY_USAGE . 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: KeyChecker.java    From dragonwell8_jdk with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Verifies the key usage extension in a CA cert.
 * The key usage extension, if present, must assert the keyCertSign bit.
 * The extended key usage extension is not checked (see CR 4776794 for
 * more information).
 */
static void verifyCAKeyUsage(X509Certificate cert)
        throws CertPathValidatorException {
    String msg = "CA key usage";
    if (debug != null) {
        debug.println("KeyChecker.verifyCAKeyUsage() ---checking " + msg
                      + "...");
    }

    boolean[] keyUsageBits = cert.getKeyUsage();

    // getKeyUsage returns null if the KeyUsage extension is not present
    // in the certificate - in which case there is nothing to check
    if (keyUsageBits == null) {
        return;
    }

    // throw an exception if the keyCertSign bit is not set
    if (!keyUsageBits[KEY_CERT_SIGN]) {
        throw new CertPathValidatorException
            (msg + " check failed: keyCertSign bit is not set", null,
             null, -1, PKIXReason.INVALID_KEY_USAGE);
    }

    if (debug != null) {
        debug.println("KeyChecker.verifyCAKeyUsage() " + msg
                      + " verified.");
    }
}
 
Example 2
Source File: KeyChecker.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Verifies the key usage extension in a CA cert.
 * The key usage extension, if present, must assert the keyCertSign bit.
 * The extended key usage extension is not checked (see CR 4776794 for
 * more information).
 */
static void verifyCAKeyUsage(X509Certificate cert)
        throws CertPathValidatorException {
    String msg = "CA key usage";
    if (debug != null) {
        debug.println("KeyChecker.verifyCAKeyUsage() ---checking " + msg
                      + "...");
    }

    boolean[] keyUsageBits = cert.getKeyUsage();

    // getKeyUsage returns null if the KeyUsage extension is not present
    // in the certificate - in which case there is nothing to check
    if (keyUsageBits == null) {
        return;
    }

    // throw an exception if the keyCertSign bit is not set
    if (!keyUsageBits[KEY_CERT_SIGN]) {
        throw new CertPathValidatorException
            (msg + " check failed: keyCertSign bit is not set", null,
             null, -1, PKIXReason.INVALID_KEY_USAGE);
    }

    if (debug != null) {
        debug.println("KeyChecker.verifyCAKeyUsage() " + msg
                      + " verified.");
    }
}
 
Example 3
Source File: KeyChecker.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Verifies the key usage extension in a CA cert.
 * The key usage extension, if present, must assert the keyCertSign bit.
 * The extended key usage extension is not checked (see CR 4776794 for
 * more information).
 */
static void verifyCAKeyUsage(X509Certificate cert)
        throws CertPathValidatorException {
    String msg = "CA key usage";
    if (debug != null) {
        debug.println("KeyChecker.verifyCAKeyUsage() ---checking " + msg
                      + "...");
    }

    boolean[] keyUsageBits = cert.getKeyUsage();

    // getKeyUsage returns null if the KeyUsage extension is not present
    // in the certificate - in which case there is nothing to check
    if (keyUsageBits == null) {
        return;
    }

    // throw an exception if the keyCertSign bit is not set
    if (!keyUsageBits[KEY_CERT_SIGN]) {
        throw new CertPathValidatorException
            (msg + " check failed: keyCertSign bit is not set", null,
             null, -1, PKIXReason.INVALID_KEY_USAGE);
    }

    if (debug != null) {
        debug.println("KeyChecker.verifyCAKeyUsage() " + msg
                      + " verified.");
    }
}
 
Example 4
Source File: KeyChecker.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Verifies the key usage extension in a CA cert.
 * The key usage extension, if present, must assert the keyCertSign bit.
 * The extended key usage extension is not checked (see CR 4776794 for
 * more information).
 */
static void verifyCAKeyUsage(X509Certificate cert)
        throws CertPathValidatorException {
    String msg = "CA key usage";
    if (debug != null) {
        debug.println("KeyChecker.verifyCAKeyUsage() ---checking " + msg
                      + "...");
    }

    boolean[] keyUsageBits = cert.getKeyUsage();

    // getKeyUsage returns null if the KeyUsage extension is not present
    // in the certificate - in which case there is nothing to check
    if (keyUsageBits == null) {
        return;
    }

    // throw an exception if the keyCertSign bit is not set
    if (!keyUsageBits[KEY_CERT_SIGN]) {
        throw new CertPathValidatorException
            (msg + " check failed: keyCertSign bit is not set", null,
             null, -1, PKIXReason.INVALID_KEY_USAGE);
    }

    if (debug != null) {
        debug.println("KeyChecker.verifyCAKeyUsage() " + msg
                      + " verified.");
    }
}
 
Example 5
Source File: KeyChecker.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Verifies the key usage extension in a CA cert.
 * The key usage extension, if present, must assert the keyCertSign bit.
 * The extended key usage extension is not checked (see CR 4776794 for
 * more information).
 */
static void verifyCAKeyUsage(X509Certificate cert)
        throws CertPathValidatorException {
    String msg = "CA key usage";
    if (debug != null) {
        debug.println("KeyChecker.verifyCAKeyUsage() ---checking " + msg
                      + "...");
    }

    boolean[] keyUsageBits = cert.getKeyUsage();

    // getKeyUsage returns null if the KeyUsage extension is not present
    // in the certificate - in which case there is nothing to check
    if (keyUsageBits == null) {
        return;
    }

    // throw an exception if the keyCertSign bit is not set
    if (!keyUsageBits[KEY_CERT_SIGN]) {
        throw new CertPathValidatorException
            (msg + " check failed: keyCertSign bit is not set", null,
             null, -1, PKIXReason.INVALID_KEY_USAGE);
    }

    if (debug != null) {
        debug.println("KeyChecker.verifyCAKeyUsage() " + msg
                      + " verified.");
    }
}
 
Example 6
Source File: KeyChecker.java    From Bytecoder with Apache License 2.0 5 votes vote down vote up
/**
 * Verifies the key usage extension in a CA cert.
 * The key usage extension, if present, must assert the keyCertSign bit.
 * The extended key usage extension is not checked (see CR 4776794 for
 * more information).
 */
static void verifyCAKeyUsage(X509Certificate cert)
        throws CertPathValidatorException {
    String msg = "CA key usage";
    if (debug != null) {
        debug.println("KeyChecker.verifyCAKeyUsage() ---checking " + msg
                      + "...");
    }

    boolean[] keyUsageBits = cert.getKeyUsage();

    // getKeyUsage returns null if the KeyUsage extension is not present
    // in the certificate - in which case there is nothing to check
    if (keyUsageBits == null) {
        return;
    }

    // throw an exception if the keyCertSign bit is not set
    if (!keyUsageBits[KEY_CERT_SIGN]) {
        throw new CertPathValidatorException
            (msg + " check failed: keyCertSign bit is not set", null,
             null, -1, PKIXReason.INVALID_KEY_USAGE);
    }

    if (debug != null) {
        debug.println("KeyChecker.verifyCAKeyUsage() " + msg
                      + " verified.");
    }
}
 
Example 7
Source File: KeyChecker.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Verifies the key usage extension in a CA cert.
 * The key usage extension, if present, must assert the keyCertSign bit.
 * The extended key usage extension is not checked (see CR 4776794 for
 * more information).
 */
static void verifyCAKeyUsage(X509Certificate cert)
        throws CertPathValidatorException {
    String msg = "CA key usage";
    if (debug != null) {
        debug.println("KeyChecker.verifyCAKeyUsage() ---checking " + msg
                      + "...");
    }

    boolean[] keyUsageBits = cert.getKeyUsage();

    // getKeyUsage returns null if the KeyUsage extension is not present
    // in the certificate - in which case there is nothing to check
    if (keyUsageBits == null) {
        return;
    }

    // throw an exception if the keyCertSign bit is not set
    if (!keyUsageBits[KEY_CERT_SIGN]) {
        throw new CertPathValidatorException
            (msg + " check failed: keyCertSign bit is not set", null,
             null, -1, PKIXReason.INVALID_KEY_USAGE);
    }

    if (debug != null) {
        debug.println("KeyChecker.verifyCAKeyUsage() " + msg
                      + " verified.");
    }
}
 
Example 8
Source File: KeyChecker.java    From jdk8u-jdk with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Verifies the key usage extension in a CA cert.
 * The key usage extension, if present, must assert the keyCertSign bit.
 * The extended key usage extension is not checked (see CR 4776794 for
 * more information).
 */
static void verifyCAKeyUsage(X509Certificate cert)
        throws CertPathValidatorException {
    String msg = "CA key usage";
    if (debug != null) {
        debug.println("KeyChecker.verifyCAKeyUsage() ---checking " + msg
                      + "...");
    }

    boolean[] keyUsageBits = cert.getKeyUsage();

    // getKeyUsage returns null if the KeyUsage extension is not present
    // in the certificate - in which case there is nothing to check
    if (keyUsageBits == null) {
        return;
    }

    // throw an exception if the keyCertSign bit is not set
    if (!keyUsageBits[KEY_CERT_SIGN]) {
        throw new CertPathValidatorException
            (msg + " check failed: keyCertSign bit is not set", null,
             null, -1, PKIXReason.INVALID_KEY_USAGE);
    }

    if (debug != null) {
        debug.println("KeyChecker.verifyCAKeyUsage() " + msg
                      + " verified.");
    }
}
 
Example 9
Source File: KeyChecker.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Verifies the key usage extension in a CA cert.
 * The key usage extension, if present, must assert the keyCertSign bit.
 * The extended key usage extension is not checked (see CR 4776794 for
 * more information).
 */
static void verifyCAKeyUsage(X509Certificate cert)
        throws CertPathValidatorException {
    String msg = "CA key usage";
    if (debug != null) {
        debug.println("KeyChecker.verifyCAKeyUsage() ---checking " + msg
                      + "...");
    }

    boolean[] keyUsageBits = cert.getKeyUsage();

    // getKeyUsage returns null if the KeyUsage extension is not present
    // in the certificate - in which case there is nothing to check
    if (keyUsageBits == null) {
        return;
    }

    // throw an exception if the keyCertSign bit is not set
    if (!keyUsageBits[KEY_CERT_SIGN]) {
        throw new CertPathValidatorException
            (msg + " check failed: keyCertSign bit is not set", null,
             null, -1, PKIXReason.INVALID_KEY_USAGE);
    }

    if (debug != null) {
        debug.println("KeyChecker.verifyCAKeyUsage() " + msg
                      + " verified.");
    }
}
 
Example 10
Source File: KeyChecker.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Verifies the key usage extension in a CA cert.
 * The key usage extension, if present, must assert the keyCertSign bit.
 * The extended key usage extension is not checked (see CR 4776794 for
 * more information).
 */
static void verifyCAKeyUsage(X509Certificate cert)
        throws CertPathValidatorException {
    String msg = "CA key usage";
    if (debug != null) {
        debug.println("KeyChecker.verifyCAKeyUsage() ---checking " + msg
                      + "...");
    }

    boolean[] keyUsageBits = cert.getKeyUsage();

    // getKeyUsage returns null if the KeyUsage extension is not present
    // in the certificate - in which case there is nothing to check
    if (keyUsageBits == null) {
        return;
    }

    // throw an exception if the keyCertSign bit is not set
    if (!keyUsageBits[KEY_CERT_SIGN]) {
        throw new CertPathValidatorException
            (msg + " check failed: keyCertSign bit is not set", null,
             null, -1, PKIXReason.INVALID_KEY_USAGE);
    }

    if (debug != null) {
        debug.println("KeyChecker.verifyCAKeyUsage() " + msg
                      + " verified.");
    }
}
 
Example 11
Source File: KeyChecker.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Verifies the key usage extension in a CA cert.
 * The key usage extension, if present, must assert the keyCertSign bit.
 * The extended key usage extension is not checked (see CR 4776794 for
 * more information).
 */
static void verifyCAKeyUsage(X509Certificate cert)
        throws CertPathValidatorException {
    String msg = "CA key usage";
    if (debug != null) {
        debug.println("KeyChecker.verifyCAKeyUsage() ---checking " + msg
                      + "...");
    }

    boolean[] keyUsageBits = cert.getKeyUsage();

    // getKeyUsage returns null if the KeyUsage extension is not present
    // in the certificate - in which case there is nothing to check
    if (keyUsageBits == null) {
        return;
    }

    // throw an exception if the keyCertSign bit is not set
    if (!keyUsageBits[KEY_CERT_SIGN]) {
        throw new CertPathValidatorException
            (msg + " check failed: keyCertSign bit is not set", null,
             null, -1, PKIXReason.INVALID_KEY_USAGE);
    }

    if (debug != null) {
        debug.println("KeyChecker.verifyCAKeyUsage() " + msg
                      + " verified.");
    }
}
 
Example 12
Source File: KeyChecker.java    From jdk8u_jdk with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Verifies the key usage extension in a CA cert.
 * The key usage extension, if present, must assert the keyCertSign bit.
 * The extended key usage extension is not checked (see CR 4776794 for
 * more information).
 */
static void verifyCAKeyUsage(X509Certificate cert)
        throws CertPathValidatorException {
    String msg = "CA key usage";
    if (debug != null) {
        debug.println("KeyChecker.verifyCAKeyUsage() ---checking " + msg
                      + "...");
    }

    boolean[] keyUsageBits = cert.getKeyUsage();

    // getKeyUsage returns null if the KeyUsage extension is not present
    // in the certificate - in which case there is nothing to check
    if (keyUsageBits == null) {
        return;
    }

    // throw an exception if the keyCertSign bit is not set
    if (!keyUsageBits[KEY_CERT_SIGN]) {
        throw new CertPathValidatorException
            (msg + " check failed: keyCertSign bit is not set", null,
             null, -1, PKIXReason.INVALID_KEY_USAGE);
    }

    if (debug != null) {
        debug.println("KeyChecker.verifyCAKeyUsage() " + msg
                      + " verified.");
    }
}
 
Example 13
Source File: KeyChecker.java    From jdk8u-jdk with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Verifies the key usage extension in a CA cert.
 * The key usage extension, if present, must assert the keyCertSign bit.
 * The extended key usage extension is not checked (see CR 4776794 for
 * more information).
 */
static void verifyCAKeyUsage(X509Certificate cert)
        throws CertPathValidatorException {
    String msg = "CA key usage";
    if (debug != null) {
        debug.println("KeyChecker.verifyCAKeyUsage() ---checking " + msg
                      + "...");
    }

    boolean[] keyUsageBits = cert.getKeyUsage();

    // getKeyUsage returns null if the KeyUsage extension is not present
    // in the certificate - in which case there is nothing to check
    if (keyUsageBits == null) {
        return;
    }

    // throw an exception if the keyCertSign bit is not set
    if (!keyUsageBits[KEY_CERT_SIGN]) {
        throw new CertPathValidatorException
            (msg + " check failed: keyCertSign bit is not set", null,
             null, -1, PKIXReason.INVALID_KEY_USAGE);
    }

    if (debug != null) {
        debug.println("KeyChecker.verifyCAKeyUsage() " + msg
                      + " verified.");
    }
}
 
Example 14
Source File: KeyChecker.java    From jdk8u-dev-jdk with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Verifies the key usage extension in a CA cert.
 * The key usage extension, if present, must assert the keyCertSign bit.
 * The extended key usage extension is not checked (see CR 4776794 for
 * more information).
 */
static void verifyCAKeyUsage(X509Certificate cert)
        throws CertPathValidatorException {
    String msg = "CA key usage";
    if (debug != null) {
        debug.println("KeyChecker.verifyCAKeyUsage() ---checking " + msg
                      + "...");
    }

    boolean[] keyUsageBits = cert.getKeyUsage();

    // getKeyUsage returns null if the KeyUsage extension is not present
    // in the certificate - in which case there is nothing to check
    if (keyUsageBits == null) {
        return;
    }

    // throw an exception if the keyCertSign bit is not set
    if (!keyUsageBits[KEY_CERT_SIGN]) {
        throw new CertPathValidatorException
            (msg + " check failed: keyCertSign bit is not set", null,
             null, -1, PKIXReason.INVALID_KEY_USAGE);
    }

    if (debug != null) {
        debug.println("KeyChecker.verifyCAKeyUsage() " + msg
                      + " verified.");
    }
}
 
Example 15
Source File: KeyChecker.java    From j2objc with Apache License 2.0 5 votes vote down vote up
/**
 * Verifies the key usage extension in a CA cert.
 * The key usage extension, if present, must assert the keyCertSign bit.
 * The extended key usage extension is not checked (see CR 4776794 for
 * more information).
 */
static void verifyCAKeyUsage(X509Certificate cert)
        throws CertPathValidatorException {
    String msg = "CA key usage";
    if (debug != null) {
        debug.println("KeyChecker.verifyCAKeyUsage() ---checking " + msg
                      + "...");
    }

    boolean[] keyUsageBits = cert.getKeyUsage();

    // getKeyUsage returns null if the KeyUsage extension is not present
    // in the certificate - in which case there is nothing to check
    if (keyUsageBits == null) {
        return;
    }

    // throw an exception if the keyCertSign bit is not set
    if (!keyUsageBits[KEY_CERT_SIGN]) {
        throw new CertPathValidatorException
            (msg + " check failed: keyCertSign bit is not set", null,
             null, -1, PKIXReason.INVALID_KEY_USAGE);
    }

    if (debug != null) {
        debug.println("KeyChecker.verifyCAKeyUsage() " + msg
                      + " verified.");
    }
}