Skip to content

Commit

Permalink
get-derived-key: fix URL + add to KBS confidential-containers#9
Browse files Browse the repository at this point in the history
  • Loading branch information
eldios committed Jan 26, 2025
1 parent d36603d commit a4e35e3
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,9 @@ impl AAEvidenceProvider {
#[async_trait]
impl EvidenceProvider for AAEvidenceProvider {
/// Get derived key using the provided key ID
async fn get_derived_key(&self, key_id: &[u8], context: Vec<u8>) -> Result<Vec<u8>> {
async fn get_derived_key(&self, key_id: &[u8], _context: Vec<u8>) -> Result<Vec<u8>> {
let req = GetDerivedKeyRequest {
KeyId: key_id.to_vec(),
special_fields: context.to_vec(),
..Default::default()
};
let res = self
Expand Down

0 comments on commit a4e35e3

Please sign in to comment.