Java Code Examples for sun.security.krb5.EncryptedData#ETYPE_NULL

The following examples show how to use sun.security.krb5.EncryptedData#ETYPE_NULL . 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: KeyImpl.java    From jdk8u_jdk with GNU General Public License v2.0 5 votes vote down vote up
private String getAlgorithmName(int eType) {
    if (destroyed)
        throw new IllegalStateException("This key is no longer valid");

    switch (eType) {
    case EncryptedData.ETYPE_DES_CBC_CRC:
    case EncryptedData.ETYPE_DES_CBC_MD5:
        return "DES";

    case EncryptedData.ETYPE_DES3_CBC_HMAC_SHA1_KD:
        return "DESede";

    case EncryptedData.ETYPE_ARCFOUR_HMAC:
        return "ArcFourHmac";

    case EncryptedData.ETYPE_AES128_CTS_HMAC_SHA1_96:
        return "AES128";

    case EncryptedData.ETYPE_AES256_CTS_HMAC_SHA1_96:
        return "AES256";

    case EncryptedData.ETYPE_NULL:
        return "NULL";

    default:
        throw new IllegalArgumentException(
            "Unsupported encryption type: " + eType);
    }
}
 
Example 2
Source File: KeyImpl.java    From dragonwell8_jdk with GNU General Public License v2.0 5 votes vote down vote up
private String getAlgorithmName(int eType) {
    if (destroyed)
        throw new IllegalStateException("This key is no longer valid");

    switch (eType) {
    case EncryptedData.ETYPE_DES_CBC_CRC:
    case EncryptedData.ETYPE_DES_CBC_MD5:
        return "DES";

    case EncryptedData.ETYPE_DES3_CBC_HMAC_SHA1_KD:
        return "DESede";

    case EncryptedData.ETYPE_ARCFOUR_HMAC:
        return "ArcFourHmac";

    case EncryptedData.ETYPE_AES128_CTS_HMAC_SHA1_96:
        return "AES128";

    case EncryptedData.ETYPE_AES256_CTS_HMAC_SHA1_96:
        return "AES256";

    case EncryptedData.ETYPE_NULL:
        return "NULL";

    default:
        throw new IllegalArgumentException(
            "Unsupported encryption type: " + eType);
    }
}
 
Example 3
Source File: KeyImpl.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
private String getAlgorithmName(int eType) {
    if (destroyed)
        throw new IllegalStateException("This key is no longer valid");

    switch (eType) {
    case EncryptedData.ETYPE_DES_CBC_CRC:
    case EncryptedData.ETYPE_DES_CBC_MD5:
        return "DES";

    case EncryptedData.ETYPE_DES3_CBC_HMAC_SHA1_KD:
        return "DESede";

    case EncryptedData.ETYPE_ARCFOUR_HMAC:
        return "ArcFourHmac";

    case EncryptedData.ETYPE_AES128_CTS_HMAC_SHA1_96:
        return "AES128";

    case EncryptedData.ETYPE_AES256_CTS_HMAC_SHA1_96:
        return "AES256";

    case EncryptedData.ETYPE_NULL:
        return "NULL";

    default:
        throw new IllegalArgumentException(
            "Unsupported encryption type: " + eType);
    }
}
 
Example 4
Source File: KeyImpl.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
private String getAlgorithmName(int eType) {
    if (destroyed)
        throw new IllegalStateException("This key is no longer valid");

    switch (eType) {
    case EncryptedData.ETYPE_DES_CBC_CRC:
    case EncryptedData.ETYPE_DES_CBC_MD5:
        return "DES";

    case EncryptedData.ETYPE_DES3_CBC_HMAC_SHA1_KD:
        return "DESede";

    case EncryptedData.ETYPE_ARCFOUR_HMAC:
        return "ArcFourHmac";

    case EncryptedData.ETYPE_AES128_CTS_HMAC_SHA1_96:
        return "AES128";

    case EncryptedData.ETYPE_AES256_CTS_HMAC_SHA1_96:
        return "AES256";

    case EncryptedData.ETYPE_NULL:
        return "NULL";

    default:
        throw new IllegalArgumentException(
            "Unsupported encryption type: " + eType);
    }
}
 
Example 5
Source File: KeyImpl.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
private String getAlgorithmName(int eType) {
    if (destroyed)
        throw new IllegalStateException("This key is no longer valid");

    switch (eType) {
    case EncryptedData.ETYPE_DES_CBC_CRC:
    case EncryptedData.ETYPE_DES_CBC_MD5:
        return "DES";

    case EncryptedData.ETYPE_DES3_CBC_HMAC_SHA1_KD:
        return "DESede";

    case EncryptedData.ETYPE_ARCFOUR_HMAC:
        return "ArcFourHmac";

    case EncryptedData.ETYPE_AES128_CTS_HMAC_SHA1_96:
        return "AES128";

    case EncryptedData.ETYPE_AES256_CTS_HMAC_SHA1_96:
        return "AES256";

    case EncryptedData.ETYPE_NULL:
        return "NULL";

    default:
        throw new IllegalArgumentException(
            "Unsupported encryption type: " + eType);
    }
}
 
Example 6
Source File: KeyImpl.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
private String getAlgorithmName(int eType) {
    if (destroyed)
        throw new IllegalStateException("This key is no longer valid");

    switch (eType) {
    case EncryptedData.ETYPE_DES_CBC_CRC:
    case EncryptedData.ETYPE_DES_CBC_MD5:
        return "DES";

    case EncryptedData.ETYPE_DES3_CBC_HMAC_SHA1_KD:
        return "DESede";

    case EncryptedData.ETYPE_ARCFOUR_HMAC:
        return "ArcFourHmac";

    case EncryptedData.ETYPE_AES128_CTS_HMAC_SHA1_96:
        return "AES128";

    case EncryptedData.ETYPE_AES256_CTS_HMAC_SHA1_96:
        return "AES256";

    case EncryptedData.ETYPE_NULL:
        return "NULL";

    default:
        throw new IllegalArgumentException(
            "Unsupported encryption type: " + eType);
    }
}
 
Example 7
Source File: EType.java    From jdk8u-jdk with GNU General Public License v2.0 4 votes vote down vote up
public static EType getInstance  (int eTypeConst)
    throws KdcErrException {
    EType eType = null;
    String eTypeName = null;
    switch (eTypeConst) {
    case EncryptedData.ETYPE_NULL:
        eType = new NullEType();
        eTypeName = "sun.security.krb5.internal.crypto.NullEType";
        break;
    case EncryptedData.ETYPE_DES_CBC_CRC:
        eType = new DesCbcCrcEType();
        eTypeName = "sun.security.krb5.internal.crypto.DesCbcCrcEType";
        break;
    case EncryptedData.ETYPE_DES_CBC_MD5:
        eType = new DesCbcMd5EType();
        eTypeName = "sun.security.krb5.internal.crypto.DesCbcMd5EType";
        break;

    case EncryptedData.ETYPE_DES3_CBC_HMAC_SHA1_KD:
        eType = new Des3CbcHmacSha1KdEType();
        eTypeName =
            "sun.security.krb5.internal.crypto.Des3CbcHmacSha1KdEType";
        break;

    case EncryptedData.ETYPE_AES128_CTS_HMAC_SHA1_96:
        eType = new Aes128CtsHmacSha1EType();
        eTypeName =
            "sun.security.krb5.internal.crypto.Aes128CtsHmacSha1EType";
        break;

    case EncryptedData.ETYPE_AES256_CTS_HMAC_SHA1_96:
        eType = new Aes256CtsHmacSha1EType();
        eTypeName =
            "sun.security.krb5.internal.crypto.Aes256CtsHmacSha1EType";
        break;

    case EncryptedData.ETYPE_ARCFOUR_HMAC:
        eType = new ArcFourHmacEType();
        eTypeName = "sun.security.krb5.internal.crypto.ArcFourHmacEType";
        break;

    default:
        String msg = "encryption type = " + toString(eTypeConst)
            + " ("  + eTypeConst + ")";
        throw new KdcErrException(Krb5.KDC_ERR_ETYPE_NOSUPP, msg);
    }
    if (DEBUG) {
        System.out.println(">>> EType: " + eTypeName);
    }
    return eType;
}
 
Example 8
Source File: EType.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
public static EType getInstance  (int eTypeConst)
    throws KdcErrException {
    EType eType = null;
    String eTypeName = null;
    switch (eTypeConst) {
    case EncryptedData.ETYPE_NULL:
        eType = new NullEType();
        eTypeName = "sun.security.krb5.internal.crypto.NullEType";
        break;
    case EncryptedData.ETYPE_DES_CBC_CRC:
        eType = new DesCbcCrcEType();
        eTypeName = "sun.security.krb5.internal.crypto.DesCbcCrcEType";
        break;
    case EncryptedData.ETYPE_DES_CBC_MD5:
        eType = new DesCbcMd5EType();
        eTypeName = "sun.security.krb5.internal.crypto.DesCbcMd5EType";
        break;

    case EncryptedData.ETYPE_DES3_CBC_HMAC_SHA1_KD:
        eType = new Des3CbcHmacSha1KdEType();
        eTypeName =
            "sun.security.krb5.internal.crypto.Des3CbcHmacSha1KdEType";
        break;

    case EncryptedData.ETYPE_AES128_CTS_HMAC_SHA1_96:
        eType = new Aes128CtsHmacSha1EType();
        eTypeName =
            "sun.security.krb5.internal.crypto.Aes128CtsHmacSha1EType";
        break;

    case EncryptedData.ETYPE_AES256_CTS_HMAC_SHA1_96:
        eType = new Aes256CtsHmacSha1EType();
        eTypeName =
            "sun.security.krb5.internal.crypto.Aes256CtsHmacSha1EType";
        break;

    case EncryptedData.ETYPE_ARCFOUR_HMAC:
        eType = new ArcFourHmacEType();
        eTypeName = "sun.security.krb5.internal.crypto.ArcFourHmacEType";
        break;

    default:
        String msg = "encryption type = " + toString(eTypeConst)
            + " ("  + eTypeConst + ")";
        throw new KdcErrException(Krb5.KDC_ERR_ETYPE_NOSUPP, msg);
    }
    if (DEBUG) {
        System.out.println(">>> EType: " + eTypeName);
    }
    return eType;
}
 
Example 9
Source File: NullEType.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
public int eType() {
    return EncryptedData.ETYPE_NULL;
}
 
Example 10
Source File: NullEType.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
public int eType() {
    return EncryptedData.ETYPE_NULL;
}
 
Example 11
Source File: EType.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
public static EType getInstance  (int eTypeConst)
    throws KdcErrException {
    EType eType = null;
    String eTypeName = null;
    switch (eTypeConst) {
    case EncryptedData.ETYPE_NULL:
        eType = new NullEType();
        eTypeName = "sun.security.krb5.internal.crypto.NullEType";
        break;
    case EncryptedData.ETYPE_DES_CBC_CRC:
        eType = new DesCbcCrcEType();
        eTypeName = "sun.security.krb5.internal.crypto.DesCbcCrcEType";
        break;
    case EncryptedData.ETYPE_DES_CBC_MD5:
        eType = new DesCbcMd5EType();
        eTypeName = "sun.security.krb5.internal.crypto.DesCbcMd5EType";
        break;

    case EncryptedData.ETYPE_DES3_CBC_HMAC_SHA1_KD:
        eType = new Des3CbcHmacSha1KdEType();
        eTypeName =
            "sun.security.krb5.internal.crypto.Des3CbcHmacSha1KdEType";
        break;

    case EncryptedData.ETYPE_AES128_CTS_HMAC_SHA1_96:
        eType = new Aes128CtsHmacSha1EType();
        eTypeName =
            "sun.security.krb5.internal.crypto.Aes128CtsHmacSha1EType";
        break;

    case EncryptedData.ETYPE_AES256_CTS_HMAC_SHA1_96:
        eType = new Aes256CtsHmacSha1EType();
        eTypeName =
            "sun.security.krb5.internal.crypto.Aes256CtsHmacSha1EType";
        break;

    case EncryptedData.ETYPE_ARCFOUR_HMAC:
        eType = new ArcFourHmacEType();
        eTypeName = "sun.security.krb5.internal.crypto.ArcFourHmacEType";
        break;

    default:
        String msg = "encryption type = " + toString(eTypeConst)
            + " ("  + eTypeConst + ")";
        throw new KdcErrException(Krb5.KDC_ERR_ETYPE_NOSUPP, msg);
    }
    if (DEBUG) {
        System.out.println(">>> EType: " + eTypeName);
    }
    return eType;
}
 
Example 12
Source File: EType.java    From jdk8u_jdk with GNU General Public License v2.0 4 votes vote down vote up
public static EType getInstance  (int eTypeConst)
    throws KdcErrException {
    EType eType = null;
    String eTypeName = null;
    switch (eTypeConst) {
    case EncryptedData.ETYPE_NULL:
        eType = new NullEType();
        eTypeName = "sun.security.krb5.internal.crypto.NullEType";
        break;
    case EncryptedData.ETYPE_DES_CBC_CRC:
        eType = new DesCbcCrcEType();
        eTypeName = "sun.security.krb5.internal.crypto.DesCbcCrcEType";
        break;
    case EncryptedData.ETYPE_DES_CBC_MD5:
        eType = new DesCbcMd5EType();
        eTypeName = "sun.security.krb5.internal.crypto.DesCbcMd5EType";
        break;

    case EncryptedData.ETYPE_DES3_CBC_HMAC_SHA1_KD:
        eType = new Des3CbcHmacSha1KdEType();
        eTypeName =
            "sun.security.krb5.internal.crypto.Des3CbcHmacSha1KdEType";
        break;

    case EncryptedData.ETYPE_AES128_CTS_HMAC_SHA1_96:
        eType = new Aes128CtsHmacSha1EType();
        eTypeName =
            "sun.security.krb5.internal.crypto.Aes128CtsHmacSha1EType";
        break;

    case EncryptedData.ETYPE_AES256_CTS_HMAC_SHA1_96:
        eType = new Aes256CtsHmacSha1EType();
        eTypeName =
            "sun.security.krb5.internal.crypto.Aes256CtsHmacSha1EType";
        break;

    case EncryptedData.ETYPE_ARCFOUR_HMAC:
        eType = new ArcFourHmacEType();
        eTypeName = "sun.security.krb5.internal.crypto.ArcFourHmacEType";
        break;

    default:
        String msg = "encryption type = " + toString(eTypeConst)
            + " ("  + eTypeConst + ")";
        throw new KdcErrException(Krb5.KDC_ERR_ETYPE_NOSUPP, msg);
    }
    if (DEBUG) {
        System.out.println(">>> EType: " + eTypeName);
    }
    return eType;
}
 
Example 13
Source File: NullEType.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
public int eType() {
    return EncryptedData.ETYPE_NULL;
}
 
Example 14
Source File: NullEType.java    From jdk8u-jdk with GNU General Public License v2.0 4 votes vote down vote up
public int eType() {
    return EncryptedData.ETYPE_NULL;
}
 
Example 15
Source File: EType.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
public static EType getInstance  (int eTypeConst)
    throws KdcErrException {
    EType eType = null;
    String eTypeName = null;
    switch (eTypeConst) {
    case EncryptedData.ETYPE_NULL:
        eType = new NullEType();
        eTypeName = "sun.security.krb5.internal.crypto.NullEType";
        break;
    case EncryptedData.ETYPE_DES_CBC_CRC:
        eType = new DesCbcCrcEType();
        eTypeName = "sun.security.krb5.internal.crypto.DesCbcCrcEType";
        break;
    case EncryptedData.ETYPE_DES_CBC_MD5:
        eType = new DesCbcMd5EType();
        eTypeName = "sun.security.krb5.internal.crypto.DesCbcMd5EType";
        break;

    case EncryptedData.ETYPE_DES3_CBC_HMAC_SHA1_KD:
        eType = new Des3CbcHmacSha1KdEType();
        eTypeName =
            "sun.security.krb5.internal.crypto.Des3CbcHmacSha1KdEType";
        break;

    case EncryptedData.ETYPE_AES128_CTS_HMAC_SHA1_96:
        eType = new Aes128CtsHmacSha1EType();
        eTypeName =
            "sun.security.krb5.internal.crypto.Aes128CtsHmacSha1EType";
        break;

    case EncryptedData.ETYPE_AES256_CTS_HMAC_SHA1_96:
        eType = new Aes256CtsHmacSha1EType();
        eTypeName =
            "sun.security.krb5.internal.crypto.Aes256CtsHmacSha1EType";
        break;

    case EncryptedData.ETYPE_ARCFOUR_HMAC:
        eType = new ArcFourHmacEType();
        eTypeName = "sun.security.krb5.internal.crypto.ArcFourHmacEType";
        break;

    default:
        String msg = "encryption type = " + toString(eTypeConst)
            + " ("  + eTypeConst + ")";
        throw new KdcErrException(Krb5.KDC_ERR_ETYPE_NOSUPP, msg);
    }
    if (DEBUG) {
        System.out.println(">>> EType: " + eTypeName);
    }
    return eType;
}
 
Example 16
Source File: NullEType.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
public int eType() {
    return EncryptedData.ETYPE_NULL;
}
 
Example 17
Source File: EType.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
public static EType getInstance  (int eTypeConst)
    throws KdcErrException {
    EType eType = null;
    String eTypeName = null;
    switch (eTypeConst) {
    case EncryptedData.ETYPE_NULL:
        eType = new NullEType();
        eTypeName = "sun.security.krb5.internal.crypto.NullEType";
        break;
    case EncryptedData.ETYPE_DES_CBC_CRC:
        eType = new DesCbcCrcEType();
        eTypeName = "sun.security.krb5.internal.crypto.DesCbcCrcEType";
        break;
    case EncryptedData.ETYPE_DES_CBC_MD5:
        eType = new DesCbcMd5EType();
        eTypeName = "sun.security.krb5.internal.crypto.DesCbcMd5EType";
        break;

    case EncryptedData.ETYPE_DES3_CBC_HMAC_SHA1_KD:
        eType = new Des3CbcHmacSha1KdEType();
        eTypeName =
            "sun.security.krb5.internal.crypto.Des3CbcHmacSha1KdEType";
        break;

    case EncryptedData.ETYPE_AES128_CTS_HMAC_SHA1_96:
        eType = new Aes128CtsHmacSha1EType();
        eTypeName =
            "sun.security.krb5.internal.crypto.Aes128CtsHmacSha1EType";
        break;

    case EncryptedData.ETYPE_AES256_CTS_HMAC_SHA1_96:
        eType = new Aes256CtsHmacSha1EType();
        eTypeName =
            "sun.security.krb5.internal.crypto.Aes256CtsHmacSha1EType";
        break;

    case EncryptedData.ETYPE_ARCFOUR_HMAC:
        eType = new ArcFourHmacEType();
        eTypeName = "sun.security.krb5.internal.crypto.ArcFourHmacEType";
        break;

    default:
        String msg = "encryption type = " + toString(eTypeConst)
            + " ("  + eTypeConst + ")";
        throw new KdcErrException(Krb5.KDC_ERR_ETYPE_NOSUPP, msg);
    }
    if (DEBUG) {
        System.out.println(">>> EType: " + eTypeName);
    }
    return eType;
}
 
Example 18
Source File: NullEType.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
public int eType() {
    return EncryptedData.ETYPE_NULL;
}
 
Example 19
Source File: EType.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
public static EType getInstance  (int eTypeConst)
    throws KdcErrException {
    EType eType = null;
    String eTypeName = null;
    switch (eTypeConst) {
    case EncryptedData.ETYPE_NULL:
        eType = new NullEType();
        eTypeName = "sun.security.krb5.internal.crypto.NullEType";
        break;
    case EncryptedData.ETYPE_DES_CBC_CRC:
        eType = new DesCbcCrcEType();
        eTypeName = "sun.security.krb5.internal.crypto.DesCbcCrcEType";
        break;
    case EncryptedData.ETYPE_DES_CBC_MD5:
        eType = new DesCbcMd5EType();
        eTypeName = "sun.security.krb5.internal.crypto.DesCbcMd5EType";
        break;

    case EncryptedData.ETYPE_DES3_CBC_HMAC_SHA1_KD:
        eType = new Des3CbcHmacSha1KdEType();
        eTypeName =
            "sun.security.krb5.internal.crypto.Des3CbcHmacSha1KdEType";
        break;

    case EncryptedData.ETYPE_AES128_CTS_HMAC_SHA1_96:
        eType = new Aes128CtsHmacSha1EType();
        eTypeName =
            "sun.security.krb5.internal.crypto.Aes128CtsHmacSha1EType";
        break;

    case EncryptedData.ETYPE_AES256_CTS_HMAC_SHA1_96:
        eType = new Aes256CtsHmacSha1EType();
        eTypeName =
            "sun.security.krb5.internal.crypto.Aes256CtsHmacSha1EType";
        break;

    case EncryptedData.ETYPE_ARCFOUR_HMAC:
        eType = new ArcFourHmacEType();
        eTypeName = "sun.security.krb5.internal.crypto.ArcFourHmacEType";
        break;

    default:
        String msg = "encryption type = " + toString(eTypeConst)
            + " ("  + eTypeConst + ")";
        throw new KdcErrException(Krb5.KDC_ERR_ETYPE_NOSUPP, msg);
    }
    if (DEBUG) {
        System.out.println(">>> EType: " + eTypeName);
    }
    return eType;
}
 
Example 20
Source File: NullEType.java    From dragonwell8_jdk with GNU General Public License v2.0 4 votes vote down vote up
public int eType() {
    return EncryptedData.ETYPE_NULL;
}