You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2014/10/27 00:08:20 UTC

svn commit: r1634406 - /commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/digest/HmacUtils.java

Author: ggregory
Date: Sun Oct 26 23:08:20 2014
New Revision: 1634406

URL: http://svn.apache.org/r1634406
Log:
Fix Javadoc bad link.

Modified:
    commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/digest/HmacUtils.java

Modified: commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/digest/HmacUtils.java
URL: http://svn.apache.org/viewvc/commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/digest/HmacUtils.java?rev=1634406&r1=1634405&r2=1634406&view=diff
==============================================================================
--- commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/digest/HmacUtils.java (original)
+++ commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/digest/HmacUtils.java Sun Oct 26 23:08:20 2014
@@ -20,6 +20,7 @@ package org.apache.commons.codec.digest;
 import java.io.IOException;
 import java.io.InputStream;
 import java.security.InvalidKeyException;
+import java.security.Key;
 import java.security.NoSuchAlgorithmException;
 
 import javax.crypto.Mac;
@@ -54,7 +55,7 @@ public final class HmacUtils {
      *            They key for the keyed digest (must not be null)
      * @return A Mac instance initialized with the given key.
      * @see Mac#getInstance(String)
-     * @see Mac#init(SecretKeySpec)
+     * @see Mac#init(Key)
      * @throws IllegalArgumentException
      *             when a {@link NoSuchAlgorithmException} is caught or key is null or key is invalid.
      */