[Beepcore-java-commits] CVS: beepcore-java/src/org/beepcore/beep/profile/sasl/otp/algorithm Algorith
Status: Beta
Brought to you by:
huston
|
From: Huston F. <hu...@us...> - 2003-11-18 14:03:13
|
Update of /cvsroot/beepcore-java/beepcore-java/src/org/beepcore/beep/profile/sasl/otp/algorithm
In directory sc8-pr-cvs1:/tmp/cvs-serv11039/src/org/beepcore/beep/profile/sasl/otp/algorithm
Modified Files:
AlgorithmImpl.java
Log Message:
fixed javadoc warnings
Index: AlgorithmImpl.java
===================================================================
RCS file: /cvsroot/beepcore-java/beepcore-java/src/org/beepcore/beep/profile/sasl/otp/algorithm/AlgorithmImpl.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** AlgorithmImpl.java 13 Sep 2003 21:19:10 -0000 1.4
--- AlgorithmImpl.java 18 Nov 2003 14:03:10 -0000 1.5
***************
*** 41,47 ****
* Method AlgorithmImpl
*
! * @param String internal is the data used by the JVM internally
! * to represent a certain MessageDigest hash algorithm. This
! * is defined in JVM documentation and in constants in SASLOTPProfile.,
*
*/
--- 41,48 ----
* Method AlgorithmImpl
*
! * @param internal The data used by the JVM internally to represent
! * a certain MessageDigest hash algorithm. This is
! * defined in JVM documentation and in constants in
! * SASLOTPProfile.
*
*/
***************
*** 53,60 ****
/**
* Method getName
- *
- *
- * @param String the algorithm's name.
- *
*/
public abstract String getName();
--- 54,57 ----
***************
*** 64,68 ****
* hash function.
*
! * @param String s is the data to be hashed
* @return byte[] the hash value in binary form.
*
--- 61,65 ----
* hash function.
*
! * @param s The data to be hashed
* @return byte[] the hash value in binary form.
*
***************
*** 81,85 ****
* hash function.
*
! * @param byte[] data is the data to be hashed
* @return byte[] the hash value in binary form.
*
--- 78,82 ----
* hash function.
*
! * @param data The data to be hashed
* @return byte[] the hash value in binary form.
*
***************
*** 107,111 ****
* it can be used by the SASLOTPProfile and its supporting classes.
*
! * @param byte[] data the hash value to be folded
* @return byte[] is the folded hash.
*
--- 104,108 ----
* it can be used by the SASLOTPProfile and its supporting classes.
*
! * @param hash The hash value to be folded
* @return byte[] is the folded hash.
*
|