fix measurement generator (#1510)

This commit is contained in:
3u13r 2023-03-23 17:44:30 +01:00 committed by GitHub
parent f7713df833
commit c21b32d440
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 32 additions and 501 deletions

View File

@ -20,7 +20,6 @@ import (
"os"
"path"
"sort"
"strconv"
"strings"
"github.com/edgelesssys/constellation/v2/internal/attestation/measurements"
@ -81,7 +80,7 @@ func main() {
// retrieve and validate measurements for the given CSP and image
measuremnts := mustGetMeasurements(ctx, rekor, []byte(constants.CosignPublicKey), http.DefaultClient, provider, defaultConf.Image)
// replace the return statement with a composite literal containing the validated measurements
returnStmt.Results[0] = measurementsCompositeLiteral(measuremnts, returnStmt.Return+7)
returnStmt.Results[0] = measurementsCompositeLiteral(measuremnts)
}
return true
}, nil,
@ -173,35 +172,23 @@ func verifyWithRekor(ctx context.Context, verifier rekorVerifier, hash string) e
// byteArrayCompositeLit returns a *ast.CompositeLit representing a byte array literal.
// The returned literal is of the form:
// [32]byte{ 0x01, 0x02, 0x03, ... }.
func byteArrayCompositeLit(hex [32]byte, pos token.Pos) *ast.CompositeLit {
func byteArrayCompositeLit(hex [32]byte) *ast.CompositeLit {
var elts []ast.Expr
// calculate the absolute byte offsets of the elements
// given the starting position
curPos := pos + 16 // 16 = len("[32]byte{") + padding
// create list of byte literals
for i, b := range hex {
for _, b := range hex {
elts = append(elts, &ast.BasicLit{
ValuePos: curPos,
Kind: token.INT,
Value: fmt.Sprintf("0x%02x", b),
Kind: token.INT,
Value: fmt.Sprintf("0x%02x", b),
})
if (i+1)%8 == 0 {
curPos += 11 // line break
} else {
curPos += 6 // 6 = len("0x00, ")
}
}
// create the composite literal
// containing the byte literals as part of an [32]byte array
return &ast.CompositeLit{
Type: &ast.ArrayType{
Lbrack: pos,
Len: ast.NewIdent("32"),
Elt: ast.NewIdent("byte"),
Len: ast.NewIdent("32"),
Elt: ast.NewIdent("byte"),
},
Lbrace: pos + 8, // 8 = len("[32]byte")
Elts: elts,
Rbrace: pos + 223, // 223 = len("[32]byte{0x00, 0x01, ...}") - 1
Elts: elts,
}
}
@ -212,50 +199,34 @@ func byteArrayCompositeLit(hex [32]byte, pos token.Pos) *ast.CompositeLit {
// Expected: [32]byte{ 0x01, 0x02, 0x03, ... },
// WarnOnly: false,
// },
func measurementsEntryKeyValueExpr(pcr uint32, measuremnt measurements.Measurement, pos token.Pos) (*ast.KeyValueExpr, token.Pos) {
// calculate the absolute byte offsets of the elements
// given the starting position
func measurementsEntryKeyValueExpr(pcr uint32, measuremnt measurements.Measurement) *ast.KeyValueExpr {
key := fmt.Sprintf("%d", pcr)
keyLen := len(key)
colon := pos + token.Pos(keyLen) // len(key)
valuePos := colon + 2 // 2 = len(": ")
expectedKeyPos := valuePos + 5 // 5 = padding + newline
expectedColon := expectedKeyPos + 8 // 8 = len("Expected")
expectedValuePos := expectedColon + 2 // 2 = len(": ")
warnOnlyKeyPos := expectedColon + 1 + byteArrayCompositeLitWidth // 1 = space
warnOnlyColon := warnOnlyKeyPos + 9 // 9 = len("WarnOnly")
warnOnlyValuePos := warnOnlyColon + 2 // 2 = len(": ")
var rbrace token.Pos
var validationOptString string
if measuremnt.ValidationOpt {
rbrace = warnOnlyValuePos + 9 // 9 = len("true") + padding
validationOptString = "WarnOnly"
} else {
rbrace = warnOnlyValuePos + 10 // 10 = len("false") + padding
validationOptString = "Enforce"
}
return &ast.KeyValueExpr{
Key: &ast.BasicLit{
ValuePos: pos,
Kind: token.INT,
Value: key,
Kind: token.INT,
Value: key,
},
Colon: colon,
Value: &ast.CompositeLit{
Lbrace: valuePos,
Elts: []ast.Expr{
&ast.KeyValueExpr{
Key: &ast.Ident{NamePos: expectedKeyPos, Name: "Expected"},
Colon: expectedColon,
Value: byteArrayCompositeLit(measuremnt.Expected, expectedValuePos),
Key: &ast.Ident{Name: "Expected"},
Value: byteArrayCompositeLit(measuremnt.Expected),
},
&ast.KeyValueExpr{
Key: &ast.Ident{NamePos: warnOnlyKeyPos, Name: "WarnOnly"},
Colon: warnOnlyColon,
Value: &ast.Ident{NamePos: warnOnlyValuePos, Name: strconv.FormatBool(bool(measuremnt.ValidationOpt))},
Key: &ast.Ident{Name: "ValidationOpt"},
Value: &ast.Ident{Name: validationOptString},
},
},
Rbrace: rbrace,
},
}, rbrace + 1 // 1 = len(",")
}
}
// measurementsCompositeLiteral returns a *ast.CompositeLit representing a measurements.M literal.
@ -272,33 +243,25 @@ func measurementsEntryKeyValueExpr(pcr uint32, measuremnt measurements.Measureme
// },
// ...
// }
func measurementsCompositeLiteral(measurements measurements.M, pos token.Pos) *ast.CompositeLit {
lbrace := pos + 1 // 1 = len("M")
func measurementsCompositeLiteral(measurements measurements.M) *ast.CompositeLit {
var elts []ast.Expr
pcrs := make([]uint32, 0, len(measurements))
for pcr := range measurements {
pcrs = append(pcrs, pcr)
}
sort.Slice(pcrs, func(i, j int) bool { return pcrs[i] < pcrs[j] })
entryPos := lbrace + 5 // 5 = padding + newline
for _, pcr := range pcrs {
kvExpr, newEntryPos := measurementsEntryKeyValueExpr(pcr, measurements[pcr], entryPos)
kvExpr := measurementsEntryKeyValueExpr(pcr, measurements[pcr])
elts = append(elts, kvExpr)
entryPos = newEntryPos + 4 // 4 = padding + newline
}
return &ast.CompositeLit{
Lbrace: lbrace,
Type: &ast.Ident{
NamePos: pos,
Name: "M",
Name: "M",
},
Elts: elts,
Rbrace: entryPos - 1, // -1 = closing brace is not indented
Elts: elts,
}
}
const byteArrayCompositeLitWidth = 235
type rekorVerifier interface {
SearchByHash(context.Context, string) ([]string, error)
VerifyEntry(context.Context, string, string) error

View File

@ -19,449 +19,17 @@ import "github.com/edgelesssys/constellation/v2/internal/cloud/cloudprovider"
func DefaultsFor(provider cloudprovider.Provider) M {
switch provider {
case cloudprovider.AWS:
return M{
0: {
Expected: [32]byte{
0x73, 0x7f, 0x76, 0x7a, 0x12, 0xf5, 0x4e, 0x70,
0xee, 0xcb, 0xc8, 0x68, 0x40, 0x11, 0x32, 0x3a,
0xe2, 0xfe, 0x2d, 0xd9, 0xf9, 0x07, 0x85, 0x57,
0x79, 0x69, 0xd7, 0xa2, 0x01, 0x3e, 0x8c, 0x12,
},
ValidationOpt: WarnOnly,
},
2: {
Expected: [32]byte{
0x3d, 0x45, 0x8c, 0xfe, 0x55, 0xcc, 0x03, 0xea,
0x1f, 0x44, 0x3f, 0x15, 0x62, 0xbe, 0xec, 0x8d,
0xf5, 0x1c, 0x75, 0xe1, 0x4a, 0x9f, 0xcf, 0x9a,
0x72, 0x34, 0xa1, 0x3f, 0x19, 0x8e, 0x79, 0x69,
},
ValidationOpt: WarnOnly,
},
3: {
Expected: [32]byte{
0x3d, 0x45, 0x8c, 0xfe, 0x55, 0xcc, 0x03, 0xea,
0x1f, 0x44, 0x3f, 0x15, 0x62, 0xbe, 0xec, 0x8d,
0xf5, 0x1c, 0x75, 0xe1, 0x4a, 0x9f, 0xcf, 0x9a,
0x72, 0x34, 0xa1, 0x3f, 0x19, 0x8e, 0x79, 0x69,
},
ValidationOpt: WarnOnly,
},
4: {
Expected: [32]byte{
0x4a, 0xd9, 0xdd, 0xb2, 0x58, 0xc6, 0x1e, 0x5f,
0xd9, 0x5d, 0x5e, 0xe4, 0xde, 0xe4, 0xb1, 0xf6,
0x02, 0xc7, 0x44, 0x1e, 0xab, 0x44, 0xd7, 0x29,
0xc5, 0xd9, 0x3a, 0xa4, 0x77, 0xac, 0xd1, 0xfd,
},
ValidationOpt: Enforce,
},
5: {
Expected: [32]byte{
0x73, 0xd1, 0x3b, 0xf0, 0xa9, 0xdc, 0x9a, 0x20,
0x1a, 0x33, 0x71, 0x50, 0xa0, 0xa4, 0xad, 0xb0,
0x6e, 0x6b, 0x22, 0x06, 0xee, 0xfa, 0xeb, 0x4f,
0xbb, 0x0f, 0xe5, 0xda, 0xc6, 0x20, 0x2f, 0xd3,
},
ValidationOpt: WarnOnly,
},
6: {
Expected: [32]byte{
0x3d, 0x45, 0x8c, 0xfe, 0x55, 0xcc, 0x03, 0xea,
0x1f, 0x44, 0x3f, 0x15, 0x62, 0xbe, 0xec, 0x8d,
0xf5, 0x1c, 0x75, 0xe1, 0x4a, 0x9f, 0xcf, 0x9a,
0x72, 0x34, 0xa1, 0x3f, 0x19, 0x8e, 0x79, 0x69,
},
ValidationOpt: WarnOnly,
},
7: {
Expected: [32]byte{
0x12, 0x0e, 0x49, 0x8d, 0xb2, 0xa2, 0x24, 0xbd,
0x51, 0x2b, 0x6e, 0xfc, 0x9b, 0x02, 0x34, 0xf8,
0x43, 0xe1, 0x0b, 0xf0, 0x61, 0xeb, 0x7a, 0x76,
0xec, 0xca, 0x55, 0x09, 0xa2, 0x23, 0x89, 0x01,
},
ValidationOpt: WarnOnly,
},
8: {
Expected: [32]byte{
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
},
ValidationOpt: Enforce,
},
9: {
Expected: [32]byte{
0xa1, 0x3d, 0x79, 0x91, 0x0d, 0x9d, 0x98, 0x48,
0x0c, 0x0d, 0x5c, 0x3f, 0x19, 0x7d, 0x38, 0x3d,
0x5d, 0x26, 0x89, 0x5e, 0x35, 0x02, 0x25, 0xe2,
0x19, 0xbf, 0x28, 0x6a, 0x74, 0x02, 0xe7, 0x80,
},
ValidationOpt: Enforce,
},
11: {
Expected: [32]byte{
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
},
ValidationOpt: Enforce,
},
12: {
Expected: [32]byte{
0x0d, 0x01, 0x5e, 0x8d, 0xb4, 0xb9, 0x82, 0x33,
0x00, 0x1c, 0x54, 0x5c, 0x8d, 0xc4, 0xc4, 0x1f,
0x88, 0xa9, 0x02, 0xfd, 0x6c, 0x60, 0xfc, 0xd8,
0x9c, 0x53, 0x46, 0xbb, 0x83, 0x75, 0xf0, 0x15,
},
ValidationOpt: Enforce,
},
13: {
Expected: [32]byte{
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
},
ValidationOpt: Enforce,
},
14: {
Expected: [32]byte{
0xd7, 0xc4, 0xcc, 0x7f, 0xf7, 0x93, 0x30, 0x22,
0xf0, 0x13, 0xe0, 0x3b, 0xde, 0xe8, 0x75, 0xb9,
0x17, 0x20, 0xb5, 0xb8, 0x6c, 0xf1, 0x75, 0x3c,
0xad, 0x83, 0x0f, 0x95, 0xe7, 0x91, 0x92, 0x6f,
},
ValidationOpt: WarnOnly,
},
15: {
Expected: [32]byte{
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
},
ValidationOpt: Enforce,
},
}
return M{0: {Expected: [32]byte{0x73, 0x7f, 0x76, 0x7a, 0x12, 0xf5, 0x4e, 0x70, 0xee, 0xcb, 0xc8, 0x68, 0x40, 0x11, 0x32, 0x3a, 0xe2, 0xfe, 0x2d, 0xd9, 0xf9, 0x07, 0x85, 0x57, 0x79, 0x69, 0xd7, 0xa2, 0x01, 0x3e, 0x8c, 0x12}, ValidationOpt: WarnOnly}, 2: {Expected: [32]byte{0x3d, 0x45, 0x8c, 0xfe, 0x55, 0xcc, 0x03, 0xea, 0x1f, 0x44, 0x3f, 0x15, 0x62, 0xbe, 0xec, 0x8d, 0xf5, 0x1c, 0x75, 0xe1, 0x4a, 0x9f, 0xcf, 0x9a, 0x72, 0x34, 0xa1, 0x3f, 0x19, 0x8e, 0x79, 0x69}, ValidationOpt: WarnOnly}, 3: {Expected: [32]byte{0x3d, 0x45, 0x8c, 0xfe, 0x55, 0xcc, 0x03, 0xea, 0x1f, 0x44, 0x3f, 0x15, 0x62, 0xbe, 0xec, 0x8d, 0xf5, 0x1c, 0x75, 0xe1, 0x4a, 0x9f, 0xcf, 0x9a, 0x72, 0x34, 0xa1, 0x3f, 0x19, 0x8e, 0x79, 0x69}, ValidationOpt: WarnOnly}, 4: {Expected: [32]byte{0x4a, 0x63, 0xd8, 0x7f, 0x5e, 0xa6, 0x0b, 0x5a, 0x90, 0x65, 0x26, 0x00, 0xa5, 0x81, 0xf4, 0x60, 0x50, 0x73, 0xd6, 0x64, 0xa0, 0x32, 0x2f, 0x73, 0xcd, 0x4b, 0x89, 0x79, 0x87, 0x2f, 0xeb, 0x74}, ValidationOpt: Enforce}, 5: {Expected: [32]byte{0x64, 0x5c, 0x4b, 0xd2, 0xee, 0x0d, 0xab, 0x47, 0x27, 0x87, 0xeb, 0xc3, 0xe0, 0xea, 0x36, 0x7b, 0x93, 0x07, 0x31, 0x38, 0x74, 0x38, 0x40, 0x95, 0x24, 0x8e, 0x6e, 0x66, 0x75, 0x99, 0x68, 0xde}, ValidationOpt: WarnOnly}, 6: {Expected: [32]byte{0x3d, 0x45, 0x8c, 0xfe, 0x55, 0xcc, 0x03, 0xea, 0x1f, 0x44, 0x3f, 0x15, 0x62, 0xbe, 0xec, 0x8d, 0xf5, 0x1c, 0x75, 0xe1, 0x4a, 0x9f, 0xcf, 0x9a, 0x72, 0x34, 0xa1, 0x3f, 0x19, 0x8e, 0x79, 0x69}, ValidationOpt: WarnOnly}, 7: {Expected: [32]byte{0x12, 0x0e, 0x49, 0x8d, 0xb2, 0xa2, 0x24, 0xbd, 0x51, 0x2b, 0x6e, 0xfc, 0x9b, 0x02, 0x34, 0xf8, 0x43, 0xe1, 0x0b, 0xf0, 0x61, 0xeb, 0x7a, 0x76, 0xec, 0xca, 0x55, 0x09, 0xa2, 0x23, 0x89, 0x01}, ValidationOpt: WarnOnly}, 8: {Expected: [32]byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, ValidationOpt: Enforce}, 9: {Expected: [32]byte{0x88, 0xb1, 0x47, 0x2c, 0x79, 0xbd, 0xe7, 0x7c, 0x52, 0x5c, 0xe4, 0x09, 0x46, 0xa4, 0x98, 0xe1, 0xa2, 0xdc, 0x95, 0xf9, 0x8e, 0xd7, 0x2d, 0x54, 0x47, 0xcc, 0x67, 0x5a, 0xf9, 0xbf, 0x06, 0x29}, ValidationOpt: Enforce}, 11: {Expected: [32]byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, ValidationOpt: Enforce}, 12: {Expected: [32]byte{0xbe, 0xc2, 0x43, 0x7b, 0xaf, 0xc1, 0xfe, 0x42, 0x2c, 0xa5, 0x9b, 0x1b, 0x0e, 0x11, 0xea, 0x5c, 0xfa, 0x7c, 0x9d, 0x16, 0x95, 0x2e, 0xed, 0x94, 0xaa, 0xbb, 0xf8, 0x59, 0x3e, 0x22, 0x76, 0x34}, ValidationOpt: Enforce}, 13: {Expected: [32]byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, ValidationOpt: Enforce}, 14: {Expected: [32]byte{0xd7, 0xc4, 0xcc, 0x7f, 0xf7, 0x93, 0x30, 0x22, 0xf0, 0x13, 0xe0, 0x3b, 0xde, 0xe8, 0x75, 0xb9, 0x17, 0x20, 0xb5, 0xb8, 0x6c, 0xf1, 0x75, 0x3c, 0xad, 0x83, 0x0f, 0x95, 0xe7, 0x91, 0x92, 0x6f}, ValidationOpt: WarnOnly}, 15: {Expected: [32]byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, ValidationOpt: Enforce}}
case cloudprovider.Azure:
return M{
1: {
Expected: [32]byte{
0x3d, 0x45, 0x8c, 0xfe, 0x55, 0xcc, 0x03, 0xea,
0x1f, 0x44, 0x3f, 0x15, 0x62, 0xbe, 0xec, 0x8d,
0xf5, 0x1c, 0x75, 0xe1, 0x4a, 0x9f, 0xcf, 0x9a,
0x72, 0x34, 0xa1, 0x3f, 0x19, 0x8e, 0x79, 0x69,
},
ValidationOpt: WarnOnly,
},
2: {
Expected: [32]byte{
0x3d, 0x45, 0x8c, 0xfe, 0x55, 0xcc, 0x03, 0xea,
0x1f, 0x44, 0x3f, 0x15, 0x62, 0xbe, 0xec, 0x8d,
0xf5, 0x1c, 0x75, 0xe1, 0x4a, 0x9f, 0xcf, 0x9a,
0x72, 0x34, 0xa1, 0x3f, 0x19, 0x8e, 0x79, 0x69,
},
ValidationOpt: WarnOnly,
},
3: {
Expected: [32]byte{
0x3d, 0x45, 0x8c, 0xfe, 0x55, 0xcc, 0x03, 0xea,
0x1f, 0x44, 0x3f, 0x15, 0x62, 0xbe, 0xec, 0x8d,
0xf5, 0x1c, 0x75, 0xe1, 0x4a, 0x9f, 0xcf, 0x9a,
0x72, 0x34, 0xa1, 0x3f, 0x19, 0x8e, 0x79, 0x69,
},
ValidationOpt: WarnOnly,
},
4: {
Expected: [32]byte{
0xd2, 0x3e, 0x29, 0x3b, 0x73, 0xe5, 0xa9, 0xcd,
0x2b, 0xdd, 0x51, 0x67, 0x62, 0xf3, 0x08, 0x9f,
0x7f, 0x16, 0x13, 0xb7, 0xd3, 0x78, 0x90, 0xaa,
0x0c, 0x3e, 0xe0, 0xb8, 0xc4, 0xaf, 0x5e, 0x5c,
},
ValidationOpt: Enforce,
},
5: {
Expected: [32]byte{
0xb7, 0x31, 0xe1, 0xa1, 0xc7, 0x0e, 0x65, 0xe4,
0x3a, 0x4e, 0xd5, 0x4d, 0x66, 0x8b, 0x7e, 0x58,
0x51, 0x63, 0xd9, 0xc4, 0x2f, 0x1e, 0xd4, 0x09,
0x61, 0x74, 0x45, 0x1f, 0xf0, 0xba, 0x62, 0xf2,
},
ValidationOpt: WarnOnly,
},
7: {
Expected: [32]byte{
0x34, 0x65, 0x47, 0xa8, 0xce, 0x59, 0x57, 0xaf,
0x27, 0xe5, 0x52, 0x42, 0x7d, 0x6b, 0x9e, 0x6d,
0x9c, 0xb5, 0x02, 0xf0, 0x15, 0x6e, 0x91, 0x55,
0x38, 0x04, 0x51, 0xee, 0xa1, 0xb3, 0xf0, 0xed,
},
ValidationOpt: WarnOnly,
},
8: {
Expected: [32]byte{
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
},
ValidationOpt: Enforce,
},
9: {
Expected: [32]byte{
0xa1, 0x3d, 0x79, 0x91, 0x0d, 0x9d, 0x98, 0x48,
0x0c, 0x0d, 0x5c, 0x3f, 0x19, 0x7d, 0x38, 0x3d,
0x5d, 0x26, 0x89, 0x5e, 0x35, 0x02, 0x25, 0xe2,
0x19, 0xbf, 0x28, 0x6a, 0x74, 0x02, 0xe7, 0x80,
},
ValidationOpt: Enforce,
},
11: {
Expected: [32]byte{
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
},
ValidationOpt: Enforce,
},
12: {
Expected: [32]byte{
0xfd, 0x80, 0xe6, 0xd3, 0x69, 0x2d, 0x7d, 0x39,
0x10, 0x4a, 0x00, 0x58, 0x90, 0x5f, 0xeb, 0xa2,
0xdf, 0x5b, 0xc5, 0x95, 0x58, 0x6b, 0xfa, 0x0f,
0xbd, 0xdf, 0x73, 0x8b, 0x0b, 0x2d, 0x47, 0xe2,
},
ValidationOpt: Enforce,
},
13: {
Expected: [32]byte{
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
},
ValidationOpt: Enforce,
},
14: {
Expected: [32]byte{
0xd7, 0xc4, 0xcc, 0x7f, 0xf7, 0x93, 0x30, 0x22,
0xf0, 0x13, 0xe0, 0x3b, 0xde, 0xe8, 0x75, 0xb9,
0x17, 0x20, 0xb5, 0xb8, 0x6c, 0xf1, 0x75, 0x3c,
0xad, 0x83, 0x0f, 0x95, 0xe7, 0x91, 0x92, 0x6f,
},
ValidationOpt: WarnOnly,
},
15: {
Expected: [32]byte{
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
},
ValidationOpt: Enforce,
},
}
return M{1: {Expected: [32]byte{0x3d, 0x45, 0x8c, 0xfe, 0x55, 0xcc, 0x03, 0xea, 0x1f, 0x44, 0x3f, 0x15, 0x62, 0xbe, 0xec, 0x8d, 0xf5, 0x1c, 0x75, 0xe1, 0x4a, 0x9f, 0xcf, 0x9a, 0x72, 0x34, 0xa1, 0x3f, 0x19, 0x8e, 0x79, 0x69}, ValidationOpt: WarnOnly}, 2: {Expected: [32]byte{0x3d, 0x45, 0x8c, 0xfe, 0x55, 0xcc, 0x03, 0xea, 0x1f, 0x44, 0x3f, 0x15, 0x62, 0xbe, 0xec, 0x8d, 0xf5, 0x1c, 0x75, 0xe1, 0x4a, 0x9f, 0xcf, 0x9a, 0x72, 0x34, 0xa1, 0x3f, 0x19, 0x8e, 0x79, 0x69}, ValidationOpt: WarnOnly}, 3: {Expected: [32]byte{0x3d, 0x45, 0x8c, 0xfe, 0x55, 0xcc, 0x03, 0xea, 0x1f, 0x44, 0x3f, 0x15, 0x62, 0xbe, 0xec, 0x8d, 0xf5, 0x1c, 0x75, 0xe1, 0x4a, 0x9f, 0xcf, 0x9a, 0x72, 0x34, 0xa1, 0x3f, 0x19, 0x8e, 0x79, 0x69}, ValidationOpt: WarnOnly}, 4: {Expected: [32]byte{0xc6, 0x34, 0x05, 0xa9, 0xa5, 0x4c, 0x3c, 0x2e, 0x2f, 0x64, 0x35, 0x88, 0xbb, 0x42, 0x8e, 0x27, 0x2b, 0x64, 0x5c, 0x67, 0x99, 0x3c, 0xe2, 0x0e, 0x87, 0xed, 0x98, 0x1b, 0xbf, 0xe0, 0x3a, 0xcb}, ValidationOpt: Enforce}, 5: {Expected: [32]byte{0xf2, 0xb6, 0x3c, 0xa6, 0xff, 0x07, 0x90, 0xd2, 0xb3, 0xb7, 0xb9, 0xe7, 0xa7, 0x43, 0x7c, 0x21, 0x14, 0x13, 0x75, 0x7d, 0x98, 0x11, 0xcc, 0xa3, 0xe9, 0x29, 0x3d, 0x18, 0x5b, 0x11, 0x0c, 0xe7}, ValidationOpt: WarnOnly}, 7: {Expected: [32]byte{0x34, 0x65, 0x47, 0xa8, 0xce, 0x59, 0x57, 0xaf, 0x27, 0xe5, 0x52, 0x42, 0x7d, 0x6b, 0x9e, 0x6d, 0x9c, 0xb5, 0x02, 0xf0, 0x15, 0x6e, 0x91, 0x55, 0x38, 0x04, 0x51, 0xee, 0xa1, 0xb3, 0xf0, 0xed}, ValidationOpt: WarnOnly}, 8: {Expected: [32]byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, ValidationOpt: Enforce}, 9: {Expected: [32]byte{0xd1, 0x3b, 0xc1, 0xbc, 0x94, 0x2b, 0x28, 0xae, 0x87, 0xf8, 0xd9, 0x77, 0x02, 0x0e, 0xdd, 0x7b, 0x26, 0xc5, 0x4c, 0x52, 0x4f, 0xe4, 0xc2, 0x03, 0x24, 0x50, 0xe0, 0x10, 0x82, 0x89, 0xae, 0x9d}, ValidationOpt: Enforce}, 11: {Expected: [32]byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, ValidationOpt: Enforce}, 12: {Expected: [32]byte{0x2c, 0x29, 0xa1, 0xd2, 0x23, 0xa3, 0xb5, 0xdb, 0x86, 0x48, 0xd5, 0xca, 0xdf, 0xa3, 0xbc, 0x44, 0xa3, 0xa5, 0x93, 0x65, 0x46, 0x74, 0xeb, 0xf6, 0xa1, 0x2a, 0x79, 0xc3, 0x7c, 0xb7, 0x77, 0x45}, ValidationOpt: Enforce}, 13: {Expected: [32]byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, ValidationOpt: Enforce}, 14: {Expected: [32]byte{0xd7, 0xc4, 0xcc, 0x7f, 0xf7, 0x93, 0x30, 0x22, 0xf0, 0x13, 0xe0, 0x3b, 0xde, 0xe8, 0x75, 0xb9, 0x17, 0x20, 0xb5, 0xb8, 0x6c, 0xf1, 0x75, 0x3c, 0xad, 0x83, 0x0f, 0x95, 0xe7, 0x91, 0x92, 0x6f}, ValidationOpt: WarnOnly}, 15: {Expected: [32]byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, ValidationOpt: Enforce}}
case cloudprovider.GCP:
return M{
1: {
Expected: [32]byte{
0x74, 0x5f, 0x2f, 0xb4, 0x23, 0x5e, 0x46, 0x47,
0xaa, 0x0a, 0xd5, 0xac, 0xe7, 0x81, 0xcd, 0x92,
0x9e, 0xb6, 0x8c, 0x28, 0x87, 0x0e, 0x7d, 0xd5,
0xd1, 0xa1, 0x53, 0x58, 0x54, 0x32, 0x5e, 0x56,
},
ValidationOpt: WarnOnly,
},
2: {
Expected: [32]byte{
0x3d, 0x45, 0x8c, 0xfe, 0x55, 0xcc, 0x03, 0xea,
0x1f, 0x44, 0x3f, 0x15, 0x62, 0xbe, 0xec, 0x8d,
0xf5, 0x1c, 0x75, 0xe1, 0x4a, 0x9f, 0xcf, 0x9a,
0x72, 0x34, 0xa1, 0x3f, 0x19, 0x8e, 0x79, 0x69,
},
ValidationOpt: WarnOnly,
},
3: {
Expected: [32]byte{
0x3d, 0x45, 0x8c, 0xfe, 0x55, 0xcc, 0x03, 0xea,
0x1f, 0x44, 0x3f, 0x15, 0x62, 0xbe, 0xec, 0x8d,
0xf5, 0x1c, 0x75, 0xe1, 0x4a, 0x9f, 0xcf, 0x9a,
0x72, 0x34, 0xa1, 0x3f, 0x19, 0x8e, 0x79, 0x69,
},
ValidationOpt: WarnOnly,
},
4: {
Expected: [32]byte{
0x97, 0x65, 0x24, 0x75, 0x9a, 0x1f, 0x06, 0x8e,
0x75, 0xa5, 0x81, 0x96, 0x5f, 0xa6, 0xdd, 0xb3,
0x7c, 0x9b, 0x62, 0x60, 0x1c, 0xd6, 0x79, 0x1e,
0x28, 0xb6, 0xc9, 0x75, 0xda, 0x92, 0xfc, 0xab,
},
ValidationOpt: Enforce,
},
5: {
Expected: [32]byte{
0x9d, 0x5f, 0x8c, 0x2e, 0x04, 0x64, 0xc6, 0x95,
0x52, 0xe5, 0x93, 0xbe, 0x32, 0xa4, 0xb0, 0x89,
0xf7, 0xe7, 0x7f, 0x4e, 0xd1, 0x2d, 0x60, 0xcd,
0xcd, 0x94, 0x12, 0x0b, 0x6c, 0xca, 0xcc, 0xf8,
},
ValidationOpt: WarnOnly,
},
6: {
Expected: [32]byte{
0x3d, 0x45, 0x8c, 0xfe, 0x55, 0xcc, 0x03, 0xea,
0x1f, 0x44, 0x3f, 0x15, 0x62, 0xbe, 0xec, 0x8d,
0xf5, 0x1c, 0x75, 0xe1, 0x4a, 0x9f, 0xcf, 0x9a,
0x72, 0x34, 0xa1, 0x3f, 0x19, 0x8e, 0x79, 0x69,
},
ValidationOpt: WarnOnly,
},
7: {
Expected: [32]byte{
0xb1, 0xe9, 0xb3, 0x05, 0x32, 0x5c, 0x51, 0xb9,
0x3d, 0xa5, 0x8c, 0xbf, 0x7f, 0x92, 0x51, 0x2d,
0x8e, 0xeb, 0xfa, 0x01, 0x14, 0x3e, 0x4d, 0x88,
0x44, 0xe4, 0x0e, 0x06, 0x2e, 0x9b, 0x6c, 0xd5,
},
ValidationOpt: WarnOnly,
},
8: {
Expected: [32]byte{
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
},
ValidationOpt: Enforce,
},
9: {
Expected: [32]byte{
0xcb, 0x82, 0x43, 0x95, 0x0b, 0x6f, 0xc8, 0xef,
0x42, 0x17, 0xde, 0xda, 0xc9, 0xae, 0xc5, 0x05,
0xf8, 0x09, 0x84, 0x43, 0x54, 0xf2, 0xf6, 0x38,
0xcd, 0x47, 0xcd, 0x7a, 0xc5, 0xf1, 0x72, 0xe3,
},
ValidationOpt: Enforce,
},
11: {
Expected: [32]byte{
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
},
ValidationOpt: Enforce,
},
12: {
Expected: [32]byte{
0x31, 0xb2, 0xc4, 0xc7, 0x92, 0x01, 0xc1, 0xc0,
0x9a, 0x3e, 0x24, 0x0c, 0xe6, 0x5c, 0xca, 0x90,
0x23, 0xc7, 0x79, 0x03, 0x95, 0x25, 0x21, 0xf1,
0x2f, 0x5b, 0x8a, 0x64, 0x9c, 0x65, 0xca, 0x4a,
},
ValidationOpt: Enforce,
},
13: {
Expected: [32]byte{
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
},
ValidationOpt: Enforce,
},
14: {
Expected: [32]byte{
0xd7, 0xc4, 0xcc, 0x7f, 0xf7, 0x93, 0x30, 0x22,
0xf0, 0x13, 0xe0, 0x3b, 0xde, 0xe8, 0x75, 0xb9,
0x17, 0x20, 0xb5, 0xb8, 0x6c, 0xf1, 0x75, 0x3c,
0xad, 0x83, 0x0f, 0x95, 0xe7, 0x91, 0x92, 0x6f,
},
ValidationOpt: WarnOnly,
},
15: {
Expected: [32]byte{
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
},
ValidationOpt: Enforce,
},
}
return M{0: {Expected: [32]byte{0x0f, 0x35, 0xc2, 0x14, 0x60, 0x8d, 0x93, 0xc7, 0xa6, 0xe6, 0x8a, 0xe7, 0x35, 0x9b, 0x4a, 0x8b, 0xe5, 0xa0, 0xe9, 0x9e, 0xea, 0x91, 0x07, 0xec, 0xe4, 0x27, 0xc4, 0xde, 0xa4, 0xe4, 0x39, 0xcf}, ValidationOpt: Enforce}, 1: {Expected: [32]byte{0x74, 0x5f, 0x2f, 0xb4, 0x23, 0x5e, 0x46, 0x47, 0xaa, 0x0a, 0xd5, 0xac, 0xe7, 0x81, 0xcd, 0x92, 0x9e, 0xb6, 0x8c, 0x28, 0x87, 0x0e, 0x7d, 0xd5, 0xd1, 0xa1, 0x53, 0x58, 0x54, 0x32, 0x5e, 0x56}, ValidationOpt: WarnOnly}, 2: {Expected: [32]byte{0x3d, 0x45, 0x8c, 0xfe, 0x55, 0xcc, 0x03, 0xea, 0x1f, 0x44, 0x3f, 0x15, 0x62, 0xbe, 0xec, 0x8d, 0xf5, 0x1c, 0x75, 0xe1, 0x4a, 0x9f, 0xcf, 0x9a, 0x72, 0x34, 0xa1, 0x3f, 0x19, 0x8e, 0x79, 0x69}, ValidationOpt: WarnOnly}, 3: {Expected: [32]byte{0x3d, 0x45, 0x8c, 0xfe, 0x55, 0xcc, 0x03, 0xea, 0x1f, 0x44, 0x3f, 0x15, 0x62, 0xbe, 0xec, 0x8d, 0xf5, 0x1c, 0x75, 0xe1, 0x4a, 0x9f, 0xcf, 0x9a, 0x72, 0x34, 0xa1, 0x3f, 0x19, 0x8e, 0x79, 0x69}, ValidationOpt: WarnOnly}, 4: {Expected: [32]byte{0x32, 0x2b, 0x4b, 0x49, 0x10, 0xc7, 0xfb, 0xa3, 0xac, 0x20, 0xff, 0xf3, 0xaf, 0xe8, 0x3b, 0x27, 0x35, 0xd7, 0xbb, 0x7b, 0x9a, 0xad, 0x31, 0x7d, 0x40, 0x1f, 0x2f, 0x80, 0xad, 0xce, 0xae, 0xab}, ValidationOpt: Enforce}, 5: {Expected: [32]byte{0x20, 0x97, 0x5d, 0x01, 0x27, 0x5a, 0x09, 0xac, 0x50, 0x54, 0xe1, 0x2f, 0xd3, 0x93, 0x19, 0x4a, 0xdd, 0x14, 0xbd, 0x50, 0x22, 0xe8, 0xfc, 0x23, 0x0d, 0x09, 0x01, 0xf7, 0x2a, 0xe2, 0x9e, 0xea}, ValidationOpt: WarnOnly}, 6: {Expected: [32]byte{0x3d, 0x45, 0x8c, 0xfe, 0x55, 0xcc, 0x03, 0xea, 0x1f, 0x44, 0x3f, 0x15, 0x62, 0xbe, 0xec, 0x8d, 0xf5, 0x1c, 0x75, 0xe1, 0x4a, 0x9f, 0xcf, 0x9a, 0x72, 0x34, 0xa1, 0x3f, 0x19, 0x8e, 0x79, 0x69}, ValidationOpt: WarnOnly}, 7: {Expected: [32]byte{0xb1, 0xe9, 0xb3, 0x05, 0x32, 0x5c, 0x51, 0xb9, 0x3d, 0xa5, 0x8c, 0xbf, 0x7f, 0x92, 0x51, 0x2d, 0x8e, 0xeb, 0xfa, 0x01, 0x14, 0x3e, 0x4d, 0x88, 0x44, 0xe4, 0x0e, 0x06, 0x2e, 0x9b, 0x6c, 0xd5}, ValidationOpt: WarnOnly}, 8: {Expected: [32]byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, ValidationOpt: Enforce}, 9: {Expected: [32]byte{0x34, 0x0b, 0x2d, 0xfa, 0x36, 0xf3, 0x6f, 0x7f, 0xb9, 0x32, 0xe7, 0x35, 0x19, 0x7d, 0xf4, 0xf3, 0x4c, 0xd1, 0x2e, 0xf2, 0xe5, 0xa3, 0x6d, 0x3d, 0x81, 0x3e, 0x5b, 0x4b, 0x12, 0xf8, 0x87, 0xf3}, ValidationOpt: Enforce}, 10: {Expected: [32]byte{0x00, 0xfc, 0xb7, 0xc4, 0x4c, 0x98, 0x04, 0x1e, 0xa1, 0xf4, 0xca, 0x50, 0xd6, 0xe5, 0x2b, 0x87, 0xb1, 0xf8, 0xf4, 0x85, 0x13, 0x0d, 0x39, 0x4a, 0x89, 0x97, 0x24, 0x29, 0x37, 0x67, 0x63, 0xd0}, ValidationOpt: WarnOnly}, 11: {Expected: [32]byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, ValidationOpt: Enforce}, 12: {Expected: [32]byte{0xb9, 0x17, 0xbf, 0x5c, 0x83, 0xd6, 0x1d, 0x35, 0xc7, 0x5b, 0xdd, 0x75, 0x10, 0x8f, 0x24, 0x7e, 0xd3, 0xbf, 0xa2, 0x73, 0x9d, 0xdb, 0x3f, 0x1c, 0x91, 0x95, 0x87, 0x9e, 0x21, 0xd5, 0xfb, 0xb5}, ValidationOpt: Enforce}, 13: {Expected: [32]byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, ValidationOpt: Enforce}, 14: {Expected: [32]byte{0xd7, 0xc4, 0xcc, 0x7f, 0xf7, 0x93, 0x30, 0x22, 0xf0, 0x13, 0xe0, 0x3b, 0xde, 0xe8, 0x75, 0xb9, 0x17, 0x20, 0xb5, 0xb8, 0x6c, 0xf1, 0x75, 0x3c, 0xad, 0x83, 0x0f, 0x95, 0xe7, 0x91, 0x92, 0x6f}, ValidationOpt: WarnOnly}, 15: {Expected: [32]byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, ValidationOpt: Enforce}}
case cloudprovider.QEMU:
return M{
4: {
Expected: [32]byte{
0xdf, 0xd6, 0x2a, 0x25, 0x1a, 0x23, 0x4d, 0x2e,
0xcc, 0xdb, 0xb4, 0x65, 0x9e, 0x49, 0x90, 0xc3,
0x30, 0xf3, 0xe4, 0xa4, 0x45, 0x6f, 0x72, 0x74,
0xc7, 0x69, 0xad, 0x43, 0xc1, 0x74, 0xc7, 0xc4,
},
ValidationOpt: Enforce,
},
8: {
Expected: [32]byte{
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
},
ValidationOpt: Enforce,
},
9: {
Expected: [32]byte{
0xa1, 0x3d, 0x79, 0x91, 0x0d, 0x9d, 0x98, 0x48,
0x0c, 0x0d, 0x5c, 0x3f, 0x19, 0x7d, 0x38, 0x3d,
0x5d, 0x26, 0x89, 0x5e, 0x35, 0x02, 0x25, 0xe2,
0x19, 0xbf, 0x28, 0x6a, 0x74, 0x02, 0xe7, 0x80,
},
ValidationOpt: Enforce,
},
11: {
Expected: [32]byte{
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
},
ValidationOpt: Enforce,
},
12: {
Expected: [32]byte{
0xc2, 0xb1, 0xe2, 0x4a, 0x8f, 0xf7, 0x34, 0xea,
0x95, 0x46, 0x62, 0x2d, 0xa8, 0xba, 0x43, 0x8c,
0x67, 0x99, 0xbe, 0x6b, 0x6c, 0xb4, 0xe6, 0x59,
0x3d, 0x94, 0x11, 0xe9, 0xea, 0x08, 0x4c, 0x0c,
},
ValidationOpt: Enforce,
},
13: {
Expected: [32]byte{
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
},
ValidationOpt: Enforce,
},
15: {
Expected: [32]byte{
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
},
ValidationOpt: Enforce,
},
}
return M{4: {Expected: [32]byte{0x58, 0x48, 0x5f, 0x62, 0x49, 0x70, 0x2f, 0x7e, 0xb3, 0xb3, 0x31, 0x5c, 0x3d, 0x9b, 0xeb, 0xf6, 0xb8, 0x10, 0x5c, 0x4c, 0x00, 0xad, 0xf7, 0xb6, 0x48, 0xbf, 0x37, 0x61, 0x16, 0x85, 0xf0, 0x2f}, ValidationOpt: Enforce}, 8: {Expected: [32]byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, ValidationOpt: Enforce}, 9: {Expected: [32]byte{0x3e, 0x0d, 0x7a, 0xc0, 0x50, 0x91, 0xc5, 0xe0, 0x31, 0xe1, 0x1a, 0x80, 0x7a, 0xff, 0xed, 0xe4, 0x35, 0x17, 0x0e, 0xfc, 0xd4, 0xfa, 0x68, 0x7d, 0x5b, 0xc9, 0x9b, 0xa7, 0x78, 0x46, 0x77, 0xe4}, ValidationOpt: Enforce}, 11: {Expected: [32]byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, ValidationOpt: Enforce}, 12: {Expected: [32]byte{0x96, 0xf8, 0x37, 0x27, 0x53, 0x4e, 0x10, 0x78, 0x57, 0x0a, 0x25, 0xba, 0x8c, 0xc1, 0x31, 0x84, 0x7c, 0x52, 0x5e, 0xe4, 0x9a, 0xb9, 0xe1, 0x24, 0x3d, 0x38, 0xd0, 0x03, 0x90, 0x53, 0x09, 0x44}, ValidationOpt: Enforce}, 13: {Expected: [32]byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, ValidationOpt: Enforce}, 15: {Expected: [32]byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, ValidationOpt: Enforce}}
default:
return nil
}