[Presence] Deflag use_shared_credential_grpc and deprecate secret_id field from LocalCredential and SharedCredential protos

PiperOrigin-RevId: 586831590
This commit is contained in:
Anthony Rueda
2023-11-30 17:08:13 -08:00
committed by Copybara-Service
parent 6ebe52a418
commit 91197f3683
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -47,7 +47,7 @@ enum CredentialType {
// LINT.IfChange(SharedCredential)
message SharedCredential {
// The randomly generated unique id of the public credential.
bytes secret_id = 1;
bytes secret_id = 1 [deprecated = true];
// 32 bytes of secure random bytes used to derive any symmetric keys needed.
bytes key_seed = 2;
+1 -1
View File
@@ -41,7 +41,7 @@ message LocalCredential {
// The unique id of (and hashed based on) a pair of Secret Key and
// X509Certificate's public key.
bytes secret_id = 1;
bytes secret_id = 1 [deprecated = true];
// Bytes representation of an AES Key owned by local device, to encrypt
// local device metadata.