blob: de48b392d5b843996720f24abe7a3377c82dcf19 [file] [log] [blame]
// Copyright 2021 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
namespace cryptohome;
table AesGcmEncryptedUSS {
// This is the encrypted UserSecretStash.
ciphertext:[ubyte];
// The random IV used with AES-GCM.
iv:[ubyte];
// The tag generated by AES-GCM.
tag:[ubyte];
}
root_type AesGcmEncryptedUSS;