// Copyright 2023 The Chromium Authors | |
// Use of this source code is governed by a BSD-style license that can be | |
// found in the LICENSE file. | |
module os_crypt_async.mojom; | |
// The algorithm of the specified key entry. | |
enum Algorithm { | |
// Algorithm used on Windows: 256 bit key with 96 bit random nonce at the | |
// start of the data. | |
kAES256GCM, | |
// Compatible with "v11" os_crypt_sync encryption on Linux. | |
kAES128CBC, | |
}; |