You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by er...@apache.org on 2004/10/17 15:20:08 UTC

svn commit: rev 54961 - incubator/directory/kerberos/trunk/source/main/org/apache/kerberos/crypto/encryption

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));
 }