Description
Digging through the source i ran into this:
PasswordUtil.java
case HASH_METHOD_SHA384: case HASH_METHOD_SSHA384: return getCredentials( credentials, algoLength, SHA512_LENGTH, encryptionMethod ); case HASH_METHOD_SHA512: case HASH_METHOD_SSHA512: return getCredentials( credentials, algoLength, SHA512_LENGTH, encryptionMethod );
I assume sinc there is a variable defind for SHA384_LENGTH, line 412 should probably read:
return getCredentials( credentials, algoLength, SHA384_LENGTH, encryptionMethod );