mirror of
https://github.com/tianocore/edk2
synced 2026-08-27 00:23:19 -04:00
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>
16 lines
317 B
C
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;
|