sev 8.0.0

Library for AMD SEV
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// SPDX-License-Identifier: Apache-2.0

mod ark;
mod ask;
mod cek;
mod oca;
mod pdh;
mod pek;

const OCA: &[u8] = include_bytes!("oca.cert");
const CEK: &[u8] = include_bytes!("cek.cert");
const PEK: &[u8] = include_bytes!("pek.cert");
const PDH: &[u8] = include_bytes!("pdh.cert");

use ::sev::certs::sev::*;
use ::sev::parser::{Decoder, Encoder};