Add warning comment about serialization
As it's important we do not break serialization of KeyChainSnapshot (as it could fail in weird and mysterious ways if we did), add comments warning anybody editing those files to also update the serializer and deserializer, as well as appropriate tests. Test: none, just adding comments Bug: 73921897 Change-Id: If73162b8fb2a0b44fd954b72c9030cd9e042282b
This commit is contained in:
@@ -50,6 +50,22 @@ import java.util.Arrays;
|
||||
*/
|
||||
@SystemApi
|
||||
public final class KeyChainProtectionParams implements Parcelable {
|
||||
|
||||
// IMPORTANT! PLEASE READ!
|
||||
// -----------------------
|
||||
// If you edit this file (e.g., to add new fields), please MAKE SURE to also do the following:
|
||||
// - Update the #writeToParcel(Parcel) method below
|
||||
// - Update the #(Parcel) constructor below
|
||||
// - Update android.security.keystore.recovery.KeyChainSnapshotTest to make sure nobody
|
||||
// accidentally breaks your fields in the Parcel in the future.
|
||||
// - Update com.android.server.locksettings.recoverablekeystore.serialization
|
||||
// .KeyChainSnapshotSerializer to correctly serialize your new field
|
||||
// - Update com.android.server.locksettings.recoverablekeystore.serialization
|
||||
// .KeyChainSnapshotSerializer to correctly deserialize your new field
|
||||
// - Update com.android.server.locksettings.recoverablekeystore.serialization
|
||||
// .KeychainSnapshotSerializerTest to make sure nobody breaks serialization of your field
|
||||
// in the future.
|
||||
|
||||
/** @hide */
|
||||
@Retention(RetentionPolicy.SOURCE)
|
||||
@IntDef(prefix = {"TYPE_"}, value = {TYPE_LOCKSCREEN})
|
||||
|
||||
@@ -48,6 +48,22 @@ import java.util.List;
|
||||
*/
|
||||
@SystemApi
|
||||
public final class KeyChainSnapshot implements Parcelable {
|
||||
|
||||
// IMPORTANT! PLEASE READ!
|
||||
// -----------------------
|
||||
// If you edit this file (e.g., to add new fields), please MAKE SURE to also do the following:
|
||||
// - Update the #writeToParcel(Parcel) method below
|
||||
// - Update the #(Parcel) constructor below
|
||||
// - Update android.security.keystore.recovery.KeyChainSnapshotTest to make sure nobody
|
||||
// accidentally breaks your fields in the Parcel in the future.
|
||||
// - Update com.android.server.locksettings.recoverablekeystore.serialization
|
||||
// .KeyChainSnapshotSerializer to correctly serialize your new field
|
||||
// - Update com.android.server.locksettings.recoverablekeystore.serialization
|
||||
// .KeyChainSnapshotSerializer to correctly deserialize your new field
|
||||
// - Update com.android.server.locksettings.recoverablekeystore.serialization
|
||||
// .KeychainSnapshotSerializerTest to make sure nobody breaks serialization of your field
|
||||
// in the future.
|
||||
|
||||
private static final int DEFAULT_MAX_ATTEMPTS = 10;
|
||||
private static final long DEFAULT_COUNTER_ID = 1L;
|
||||
|
||||
|
||||
@@ -35,6 +35,22 @@ import java.lang.annotation.RetentionPolicy;
|
||||
*/
|
||||
@SystemApi
|
||||
public final class KeyDerivationParams implements Parcelable {
|
||||
|
||||
// IMPORTANT! PLEASE READ!
|
||||
// -----------------------
|
||||
// If you edit this file (e.g., to add new fields), please MAKE SURE to also do the following:
|
||||
// - Update the #writeToParcel(Parcel) method below
|
||||
// - Update the #(Parcel) constructor below
|
||||
// - Update android.security.keystore.recovery.KeyChainSnapshotTest to make sure nobody
|
||||
// accidentally breaks your fields in the Parcel in the future.
|
||||
// - Update com.android.server.locksettings.recoverablekeystore.serialization
|
||||
// .KeyChainSnapshotSerializer to correctly serialize your new field
|
||||
// - Update com.android.server.locksettings.recoverablekeystore.serialization
|
||||
// .KeyChainSnapshotSerializer to correctly deserialize your new field
|
||||
// - Update com.android.server.locksettings.recoverablekeystore.serialization
|
||||
// .KeychainSnapshotSerializerTest to make sure nobody breaks serialization of your field
|
||||
// in the future.
|
||||
|
||||
private final int mAlgorithm;
|
||||
private final byte[] mSalt;
|
||||
private final int mMemoryDifficulty;
|
||||
|
||||
@@ -42,6 +42,21 @@ public final class WrappedApplicationKey implements Parcelable {
|
||||
// The only supported format is AES-256 symmetric key.
|
||||
private byte[] mEncryptedKeyMaterial;
|
||||
|
||||
// IMPORTANT! PLEASE READ!
|
||||
// -----------------------
|
||||
// If you edit this file (e.g., to add new fields), please MAKE SURE to also do the following:
|
||||
// - Update the #writeToParcel(Parcel) method below
|
||||
// - Update the #(Parcel) constructor below
|
||||
// - Update android.security.keystore.recovery.KeyChainSnapshotTest to make sure nobody
|
||||
// accidentally breaks your fields in the Parcel in the future.
|
||||
// - Update com.android.server.locksettings.recoverablekeystore.serialization
|
||||
// .KeyChainSnapshotSerializer to correctly serialize your new field
|
||||
// - Update com.android.server.locksettings.recoverablekeystore.serialization
|
||||
// .KeyChainSnapshotSerializer to correctly deserialize your new field
|
||||
// - Update com.android.server.locksettings.recoverablekeystore.serialization
|
||||
// .KeychainSnapshotSerializerTest to make sure nobody breaks serialization of your field
|
||||
// in the future.
|
||||
|
||||
/**
|
||||
* Builder for creating {@link WrappedApplicationKey}.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user