edk2/CryptoPkg/Library/BaseCryptLib/KeyContext.h
Michael G.A. Holland 7bd23c60e8 CryptoPkg/BaseCryptLib: Add ED448 verification and signature fcns
Implemented signature and verification functions for ED448;
  Updated documentation and unit tests to cover new verification functions

Signed-off-by: Michael G.A. Holland <michael.holland@intel.com>
2026-07-01 01:26:24 +00:00

16 lines
317 B
C

/** @file
Key Context structure for EdDsa, ML-DSA and SLH-DSA APIs.
Copyright (c) 2026, Intel Corporation. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#pragma once
#include <openssl/evp.h>
typedef struct {
INT32 Nid;
EVP_PKEY *EvpPkey;
} KEY_CONTEXT;