Return-Path: X-Original-To: apmail-commons-commits-archive@minotaur.apache.org Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id F06CB106FC for ; Fri, 20 Dec 2013 22:06:27 +0000 (UTC) Received: (qmail 92522 invoked by uid 500); 20 Dec 2013 22:06:27 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 92473 invoked by uid 500); 20 Dec 2013 22:06:27 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 92466 invoked by uid 99); 20 Dec 2013 22:06:27 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 20 Dec 2013 22:06:27 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 20 Dec 2013 22:06:26 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 80DEB23888E2; Fri, 20 Dec 2013 22:06:06 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1552818 - /commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/digest/Md5Crypt.java Date: Fri, 20 Dec 2013 22:06:06 -0000 To: commits@commons.apache.org From: ggregory@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20131220220606.80DEB23888E2@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: ggregory Date: Fri Dec 20 22:06:06 2013 New Revision: 1552818 URL: http://svn.apache.org/r1552818 Log: Javadoc. Modified: commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/digest/Md5Crypt.java Modified: commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/digest/Md5Crypt.java URL: http://svn.apache.org/viewvc/commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/digest/Md5Crypt.java?rev=1552818&r1=1552817&r2=1552818&view=diff ============================================================================== --- commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/digest/Md5Crypt.java (original) +++ commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/digest/Md5Crypt.java Fri Dec 20 22:06:06 2013 @@ -62,6 +62,8 @@ public class Md5Crypt { /** * See {@link #apr1Crypt(String, String)} for details. * + * @param keyBytes + * plaintext string to hash. * @throws RuntimeException * when a {@link java.security.NoSuchAlgorithmException} is caught. * */ @@ -72,6 +74,8 @@ public class Md5Crypt { /** * See {@link #apr1Crypt(String, String)} for details. * + * @param keyBytes + * plaintext string to hash. * @throws IllegalArgumentException * if the salt does not match the allowed pattern * @throws RuntimeException @@ -88,6 +92,8 @@ public class Md5Crypt { /** * See {@link #apr1Crypt(String, String)} for details. * + * @param keyBytes + * plaintext string to hash. * @throws RuntimeException * when a {@link java.security.NoSuchAlgorithmException} is caught. */ @@ -102,7 +108,7 @@ public class Md5Crypt { * prefix. * * @param keyBytes - * plaintext string that should be hashed. + * plaintext string to hash. * @param salt * salt string including the prefix and optionally garbage at the end. Will be generated randomly if * null. @@ -121,6 +127,8 @@ public class Md5Crypt { *

* See {@link Crypt#crypt(String, String)} for details. * + * @param keyBytes + * plaintext string to hash. * @throws RuntimeException * when a {@link java.security.NoSuchAlgorithmException} is caught. */ @@ -134,7 +142,7 @@ public class Md5Crypt { * See {@link Crypt#crypt(String, String)} for details. * * @param keyBytes - * plaintext string that should be hashed. + * plaintext string to hash. * @param salt * salt string including the prefix and optionally garbage at the end. Will be generated randomly if * null. @@ -153,6 +161,8 @@ public class Md5Crypt { *

* See {@link Crypt#crypt(String, String)} or {@link #apr1Crypt(String, String)} for details. * + * @param keyBytes + * plaintext string to hash. * @throws IllegalArgumentException * if the salt does not match the allowed pattern * @throws RuntimeException