mirror of
https://github.com/kairos-io/kairos-sdk.git
synced 2025-08-08 10:37:22 +00:00
16 lines
273 B
Go
16 lines
273 B
Go
|
package types
|
||
|
|
||
|
import "crypto/x509/pkix"
|
||
|
|
||
|
// CertList provides a list of certs on the system from the Efivars and properly parsed
|
||
|
type CertList struct {
|
||
|
PK []CertDetail
|
||
|
KEK []CertDetail
|
||
|
DB []CertDetail
|
||
|
}
|
||
|
|
||
|
type CertDetail struct {
|
||
|
Owner pkix.Name
|
||
|
Issuer pkix.Name
|
||
|
}
|