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

The following examples show how to use sun.security.krb5.EncryptedData#ETYPE_ARCFOUR_HMAC_EXP . 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: EType.java    From dragonwell8_jdk with GNU General Public License v2.0 3 votes vote down vote up
/**
 * https://tools.ietf.org/html/rfc4120#section-3.1.3:
 *
 *                 A "newer" enctype is any enctype first officially
 * specified concurrently with or subsequent to the issue of this RFC.
 * The enctypes DES, 3DES, or RC4 and any defined in [RFC1510] are not
 * "newer" enctypes.
 *
 * @param eTypeConst the encryption type
 * @return true if "newer"
 */
public static boolean isNewer(int eTypeConst) {
    return eTypeConst != EncryptedData.ETYPE_DES_CBC_CRC &&
            eTypeConst != EncryptedData.ETYPE_DES_CBC_MD4 &&
            eTypeConst != EncryptedData.ETYPE_DES_CBC_MD5 &&
            eTypeConst != EncryptedData.ETYPE_DES3_CBC_HMAC_SHA1_KD &&
            eTypeConst != EncryptedData.ETYPE_ARCFOUR_HMAC &&
            eTypeConst != EncryptedData.ETYPE_ARCFOUR_HMAC_EXP;
}
 
Example 2
Source File: EType.java    From TencentKona-8 with GNU General Public License v2.0 3 votes vote down vote up
/**
 * https://tools.ietf.org/html/rfc4120#section-3.1.3:
 *
 *                 A "newer" enctype is any enctype first officially
 * specified concurrently with or subsequent to the issue of this RFC.
 * The enctypes DES, 3DES, or RC4 and any defined in [RFC1510] are not
 * "newer" enctypes.
 *
 * @param eTypeConst the encryption type
 * @return true if "newer"
 */
public static boolean isNewer(int eTypeConst) {
    return eTypeConst != EncryptedData.ETYPE_DES_CBC_CRC &&
            eTypeConst != EncryptedData.ETYPE_DES_CBC_MD4 &&
            eTypeConst != EncryptedData.ETYPE_DES_CBC_MD5 &&
            eTypeConst != EncryptedData.ETYPE_DES3_CBC_HMAC_SHA1_KD &&
            eTypeConst != EncryptedData.ETYPE_ARCFOUR_HMAC &&
            eTypeConst != EncryptedData.ETYPE_ARCFOUR_HMAC_EXP;
}
 
Example 3
Source File: EType.java    From openjdk-jdk8u with GNU General Public License v2.0 3 votes vote down vote up
/**
 * https://tools.ietf.org/html/rfc4120#section-3.1.3:
 *
 *                 A "newer" enctype is any enctype first officially
 * specified concurrently with or subsequent to the issue of this RFC.
 * The enctypes DES, 3DES, or RC4 and any defined in [RFC1510] are not
 * "newer" enctypes.
 *
 * @param eTypeConst the encryption type
 * @return true if "newer"
 */
public static boolean isNewer(int eTypeConst) {
    return eTypeConst != EncryptedData.ETYPE_DES_CBC_CRC &&
            eTypeConst != EncryptedData.ETYPE_DES_CBC_MD4 &&
            eTypeConst != EncryptedData.ETYPE_DES_CBC_MD5 &&
            eTypeConst != EncryptedData.ETYPE_DES3_CBC_HMAC_SHA1_KD &&
            eTypeConst != EncryptedData.ETYPE_ARCFOUR_HMAC &&
            eTypeConst != EncryptedData.ETYPE_ARCFOUR_HMAC_EXP;
}
 
Example 4
Source File: EType.java    From jdk8u_jdk with GNU General Public License v2.0 3 votes vote down vote up
/**
 * https://tools.ietf.org/html/rfc4120#section-3.1.3:
 *
 *                 A "newer" enctype is any enctype first officially
 * specified concurrently with or subsequent to the issue of this RFC.
 * The enctypes DES, 3DES, or RC4 and any defined in [RFC1510] are not
 * "newer" enctypes.
 *
 * @param eTypeConst the encryption type
 * @return true if "newer"
 */
public static boolean isNewer(int eTypeConst) {
    return eTypeConst != EncryptedData.ETYPE_DES_CBC_CRC &&
            eTypeConst != EncryptedData.ETYPE_DES_CBC_MD4 &&
            eTypeConst != EncryptedData.ETYPE_DES_CBC_MD5 &&
            eTypeConst != EncryptedData.ETYPE_DES3_CBC_HMAC_SHA1_KD &&
            eTypeConst != EncryptedData.ETYPE_ARCFOUR_HMAC &&
            eTypeConst != EncryptedData.ETYPE_ARCFOUR_HMAC_EXP;
}