github.com/linuxboot/fiano@v1.2.0/pkg/amd/psb/types.go (about) 1 // Copyright 2023 the LinuxBoot Authors. All rights reserved 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 package psb 6 7 // Buf44B is a binary buffer 44 bytes long 8 type Buf44B = [44]uint8 9 10 // Buf36B is a binary buffer 36 bytes long 11 type Buf36B = [36]uint8 12 13 // Buf32B is a binary buffer 32 bytes long 14 type Buf32B = [32]uint8 15 16 // Buf16B is a binary buffer 16 bytes long 17 type Buf16B = [16]uint8 18 19 // Buf8B is a binary buffer 8 bytes long 20 type Buf8B = [8]uint8 21 22 // Buf4B is a binary buffer 4 bytes long 23 type Buf4B = [4]uint8 24 25 // Buf3B is a binary buffer 3 bytes long 26 type Buf3B = [3]uint8