This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Patch: FYI: SHA-160 alias


I'm checking this in to classpath and libgcj.

This adds an alias, "SHA-160", suggested by gcj PR 19728.
Apparently some application out there uses this alias.

Tom

Index: ChangeLog
from  Rutger Ovidius  <ovidr@users.sourceforge.net>

	* gnu/java/security/provider/Gnu.java (Gnu): Add SHA-160 alias.

Index: gnu/java/security/provider/Gnu.java
===================================================================
RCS file: /cvsroot/classpath/classpath/gnu/java/security/provider/Gnu.java,v
retrieving revision 1.6
diff -u -r1.6 Gnu.java
--- gnu/java/security/provider/Gnu.java 7 Nov 2004 19:40:56 -0000 1.6
+++ gnu/java/security/provider/Gnu.java 20 Feb 2005 22:15:35 -0000
@@ -1,5 +1,5 @@
 /* Gnu.java --- Gnu provider main class
-   Copyright (C) 1999, 2002, 2003 Free Software Foundation, Inc.
+   Copyright (C) 1999, 2002, 2003, 2005 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -129,6 +129,7 @@
         // Format "Alias", "Actual Name"
         put("Alg.Alias.MessageDigest.SHA1", "SHA");
         put("Alg.Alias.MessageDigest.SHA-1", "SHA");
+        put("Alg.Alias.MessageDigest.SHA-160", "SHA");
 
         // Algorithm Parameters
         put("AlgorithmParameters.DSA",


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]