Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordangrasso <danielegrasso86@gmail.com>2013-09-12 22:46:11 +0400
committerdangrasso <danielegrasso86@gmail.com>2013-09-12 22:46:11 +0400
commita7bf2a8b5dbf0068776cb2f75a42e17caf6f97d0 (patch)
treef849b0599989a8b73b34f2676c1df8e2b96714c5 /core/src/main/java/org/bouncycastle
parent94447e133ce85abf752c18d5cac0dc34d5408d6e (diff)
Update SRP6Util.java
javadoc comment fixed
Diffstat (limited to 'core/src/main/java/org/bouncycastle')
-rw-r--r--core/src/main/java/org/bouncycastle/crypto/agreement/srp/SRP6Util.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/main/java/org/bouncycastle/crypto/agreement/srp/SRP6Util.java b/core/src/main/java/org/bouncycastle/crypto/agreement/srp/SRP6Util.java
index bf1b1377..9b555874 100644
--- a/core/src/main/java/org/bouncycastle/crypto/agreement/srp/SRP6Util.java
+++ b/core/src/main/java/org/bouncycastle/crypto/agreement/srp/SRP6Util.java
@@ -108,8 +108,8 @@ public class SRP6Util
/**
* Computes the final Key according to the standard routine: Key = H(S)
* @param digest The Digest used as the hashing function H
- * @param S The secret calculated by both sides
- * @return
+ * @param S the secret calculated by both sides
+ * @return Key for the current session, derived from the secret S
*/
public static BigInteger calculateKey(Digest digest, BigInteger S) {
byte[] _output = new byte[digest.getDigestSize()];