in src/main/java/software/amazon/encryption/s3/materials/PartialRsaKeyPair.java [70:74]
public boolean equals(Object o) {
if (o == null || getClass() != o.getClass()) return false;
PartialRsaKeyPair that = (PartialRsaKeyPair) o;
return Objects.equals(_privateKey, that._privateKey) && Objects.equals(_publicKey, that._publicKey);
}