in src/main/java/com/amazonaws/encryptionsdk/model/EncryptionMaterials.java [93:103]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
EncryptionMaterials that = (EncryptionMaterials) o;
return algorithm == that.algorithm
&& Objects.equals(encryptionContext, that.encryptionContext)
&& Objects.equals(encryptedDataKeys, that.encryptedDataKeys)
&& Objects.equals(cleartextDataKey, that.cleartextDataKey)
&& Objects.equals(trailingSignatureKey, that.trailingSignatureKey)
&& Objects.equals(masterKeys, that.masterKeys);
}