Remove redundant JavaDoc in security package

- Remove all JavaDoc in security package that has no additional information than in the code
- Reduce visibility of class members where appropriate
This commit is contained in:
ljacqu
2015-12-19 09:52:16 +01:00
parent ec47371dcb
commit 7b2be4ca47
36 changed files with 38 additions and 949 deletions
@@ -13,9 +13,6 @@ import java.security.NoSuchAlgorithmException;
* <p>
* The comparePassword is called when we need to match password (/login usually)
* </p>
*
* @author Gabriele
* @version $Revision: 1.0 $
*/
public interface EncryptionMethod {
@@ -25,7 +22,7 @@ public interface EncryptionMethod {
* etc... for customs methods)
* @param name String
*
* @return Hashing password * @throws NoSuchAlgorithmException * @throws NoSuchAlgorithmException
* @return Hashing password
*/
String getHash(String password, String salt, String name)
throws NoSuchAlgorithmException;
@@ -35,7 +32,7 @@ public interface EncryptionMethod {
* @param password
* @param playerName
*
* @return true if password match, false else * @throws NoSuchAlgorithmException * @throws NoSuchAlgorithmException
* @return true if password match, false else
*/
boolean comparePassword(String hash, String password, String playerName)
throws NoSuchAlgorithmException;