in crypto/support/hashes/argon2/src/main/java/org/apache/shiro/crypto/support/hashes/argon2/Argon2Hash.java [353:366]
public boolean equals(Object other) {
if (this == other) {
return true;
}
if (other == null || getClass() != other.getClass()) {
return false;
}
if (!super.equals(other)) {
return false;
}
Argon2Hash that = (Argon2Hash) other;
return argonVersion == that.argonVersion && iterations == that.iterations
&& memoryKiB == that.memoryKiB && parallelism == that.parallelism;
}