diff options
Diffstat (limited to 'src/interfaces/jdbc/org/postgresql/util/MD5Digest.java')
-rw-r--r-- | src/interfaces/jdbc/org/postgresql/util/MD5Digest.java | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/src/interfaces/jdbc/org/postgresql/util/MD5Digest.java b/src/interfaces/jdbc/org/postgresql/util/MD5Digest.java index df2be5645d..fcee601faa 100644 --- a/src/interfaces/jdbc/org/postgresql/util/MD5Digest.java +++ b/src/interfaces/jdbc/org/postgresql/util/MD5Digest.java @@ -1,10 +1,20 @@ +/*------------------------------------------------------------------------- + * + * MD5Digest.java + * MD5-based utility function to obfuscate passwords before network + * transmission + * + * Copyright (c) 2003, PostgreSQL Global Development Group + * + * IDENTIFICATION + * $Header: /cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/util/Attic/MD5Digest.java,v 1.5 2003/03/07 18:39:46 barry Exp $ + * + *------------------------------------------------------------------------- + */ package org.postgresql.util; /* - * MD5-based utility function to obfuscate passwords before network transmission - * * @author Jeremy Wohl - * $Id: MD5Digest.java,v 1.4 2002/08/16 19:35:46 davec Exp $ */ import java.security.*; |