Author: erodriguez
Date: Sun Oct 17 06:20:08 2004
New Revision: 54961

Modified:
   
incubator/directory/kerberos/trunk/source/main/org/apache/kerberos/crypto/encryption/CipherType.java
Log:
Added NULL to list of supported cipher types.

Modified: 
incubator/directory/kerberos/trunk/source/main/org/apache/kerberos/crypto/encryption/CipherType.java
==============================================================================
--- 
incubator/directory/kerberos/trunk/source/main/org/apache/kerberos/crypto/encryption/CipherType.java
        (original)
+++ 
incubator/directory/kerberos/trunk/source/main/org/apache/kerberos/crypto/encryption/CipherType.java
        Sun Oct 17 06:20:08 2004
@@ -59,7 +59,7 @@
        /**
         * These two lines are all that's necessary to export a List of VALUES.
         */
-       private static final CipherType[] fValues = {DES, DES3, AES128};
+       private static final CipherType[] fValues = {NULL, DES, DES3, AES128};
        // VALUES needs to be located here, otherwise illegal forward reference
        public static final List VALUES = 
Collections.unmodifiableList(Arrays.asList(fValues));
 }

Reply via email to