mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
21 lines
394 B
Go
21 lines
394 B
Go
|
/*
|
||
|
Copyright (c) Edgeless Systems GmbH
|
||
|
|
||
|
SPDX-License-Identifier: AGPL-3.0-only
|
||
|
*/
|
||
|
|
||
|
// Package testdata contains testing data for an attestation process.
|
||
|
package testdata
|
||
|
|
||
|
import _ "embed"
|
||
|
|
||
|
// Ark is a valid ARK certificate, as returned from the AMD KDS.
|
||
|
//
|
||
|
//go:embed ark.pem
|
||
|
var Ark []byte
|
||
|
|
||
|
// Ask is a valid ASK certificate, as returned from the AMD KDS.
|
||
|
//
|
||
|
//go:embed ask.pem
|
||
|
var Ask []byte
|