1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// Copyright © 2023-2026 Hash (HSH) library contributors. All rights reserved.
// SPDX-License-Identifier: Apache-2.0 OR MIT
//! Google Cloud KMS pepper provider — **stub**.
//!
//! Symmetric in shape to [`crate::aws`]; the real implementation uses
//! `gcloud-kms` (or `google-cloud-kms`) to decrypt versioned key
//! ciphertexts stored in app config.
use crate::;
/// Options for the (future) GCP [`fetch_pepper`] call.
/// Fetches pepper keys from GCP Cloud KMS. **Stub** — see
/// [`crate::aws::fetch_pepper`] for the rationale.
///
/// # Errors
///
/// Currently always returns an error.
pub async