Loading keystore/java/android/security/keystore2/AndroidKeyStoreKey.java +2 −8 Original line number Diff line number Diff line Loading @@ -102,11 +102,9 @@ public class AndroidKeyStoreKey implements Key { final int prime = 31; int result = 1; result = prime * result + ((mDescriptor == null) ? 0 : mDescriptor.hashCode()); result = prime * result + getClass().hashCode(); result = prime * result + (int) (mKeyId >>> 32); result = prime * result + (int) (mKeyId & 0xffffffff); result = prime * result + ((mAuthorizations == null) ? 0 : mAuthorizations.hashCode()); result = prime * result + ((mAlgorithm == null) ? 0 : mAlgorithm.hashCode()); return result; } Loading @@ -122,10 +120,6 @@ public class AndroidKeyStoreKey implements Key { return false; } AndroidKeyStoreKey other = (AndroidKeyStoreKey) obj; if (mKeyId != other.mKeyId) { return false; } return true; return mKeyId == other.mKeyId; } } keystore/java/android/security/keystore2/AndroidKeyStorePublicKey.java +10 −4 Original line number Diff line number Diff line Loading @@ -23,6 +23,7 @@ import android.system.keystore2.KeyDescriptor; import android.system.keystore2.KeyMetadata; import java.security.PublicKey; import java.util.Objects; /** * {@link PublicKey} backed by Android Keystore. Loading Loading @@ -75,9 +76,14 @@ public abstract class AndroidKeyStorePublicKey extends AndroidKeyStoreKey implem if (!super.equals(obj)) { return false; } if (getClass() != obj.getClass()) { return false; } return true; /* * getClass().equals(ojb.getClass()) is implied by the call to super.equals() above. This * means we can cast obj to AndroidKeyStorePublicKey here. */ final AndroidKeyStorePublicKey other = (AndroidKeyStorePublicKey) obj; return Objects.equals(mCertificate, other.mCertificate) && Objects.equals(mCertificateChain, other.mCertificateChain); } } Loading
keystore/java/android/security/keystore2/AndroidKeyStoreKey.java +2 −8 Original line number Diff line number Diff line Loading @@ -102,11 +102,9 @@ public class AndroidKeyStoreKey implements Key { final int prime = 31; int result = 1; result = prime * result + ((mDescriptor == null) ? 0 : mDescriptor.hashCode()); result = prime * result + getClass().hashCode(); result = prime * result + (int) (mKeyId >>> 32); result = prime * result + (int) (mKeyId & 0xffffffff); result = prime * result + ((mAuthorizations == null) ? 0 : mAuthorizations.hashCode()); result = prime * result + ((mAlgorithm == null) ? 0 : mAlgorithm.hashCode()); return result; } Loading @@ -122,10 +120,6 @@ public class AndroidKeyStoreKey implements Key { return false; } AndroidKeyStoreKey other = (AndroidKeyStoreKey) obj; if (mKeyId != other.mKeyId) { return false; } return true; return mKeyId == other.mKeyId; } }
keystore/java/android/security/keystore2/AndroidKeyStorePublicKey.java +10 −4 Original line number Diff line number Diff line Loading @@ -23,6 +23,7 @@ import android.system.keystore2.KeyDescriptor; import android.system.keystore2.KeyMetadata; import java.security.PublicKey; import java.util.Objects; /** * {@link PublicKey} backed by Android Keystore. Loading Loading @@ -75,9 +76,14 @@ public abstract class AndroidKeyStorePublicKey extends AndroidKeyStoreKey implem if (!super.equals(obj)) { return false; } if (getClass() != obj.getClass()) { return false; } return true; /* * getClass().equals(ojb.getClass()) is implied by the call to super.equals() above. This * means we can cast obj to AndroidKeyStorePublicKey here. */ final AndroidKeyStorePublicKey other = (AndroidKeyStorePublicKey) obj; return Objects.equals(mCertificate, other.mCertificate) && Objects.equals(mCertificateChain, other.mCertificateChain); } }