Documentation ¶
Index ¶
Constants ¶
View Source
const ( ALGORITHM_TYPE_AES = 1 ALGORITHM_MODE_GCM = 1 )
View Source
const ( CONTENT_TYPE_NON_FRAMED = 1 CONTENT_TYPE_FRAMED = 2 SEQUENCE_NUMBER_END = 0xFFFFFFFF STRING_ID_FRAME = `AWSKMSEncryptionClient Frame` STRING_ID_FINAL_FRAME = `AWSKMSEncryptionClient Final Frame` STRING_ID_NON_FRAMED = `AWSKMSEncryptionClient Single Block` )
Variables ¶
View Source
var Algorithms = []Algorithm{ { Id: 0x0378, Type: ALGORITHM_TYPE_AES, DataKeyLength: 32, Mode: ALGORITHM_MODE_GCM, IVLength: 12, AuthTagLength: 16, HashFunc: sha512.New384, }, { Id: 0x0346, Type: ALGORITHM_TYPE_AES, DataKeyLength: 24, Mode: ALGORITHM_MODE_GCM, IVLength: 12, AuthTagLength: 16, HashFunc: sha512.New384, }, { Id: 0x0214, Type: ALGORITHM_TYPE_AES, DataKeyLength: 16, Mode: ALGORITHM_MODE_GCM, IVLength: 12, AuthTagLength: 16, HashFunc: sha256.New, }, { Id: 0x0178, Type: ALGORITHM_TYPE_AES, DataKeyLength: 32, Mode: ALGORITHM_MODE_GCM, IVLength: 12, AuthTagLength: 16, HashFunc: sha256.New, }, { Id: 0x0146, Type: ALGORITHM_TYPE_AES, DataKeyLength: 24, Mode: ALGORITHM_MODE_GCM, IVLength: 12, AuthTagLength: 16, HashFunc: sha256.New, }, { Id: 0x0114, Type: ALGORITHM_TYPE_AES, DataKeyLength: 16, Mode: ALGORITHM_MODE_GCM, IVLength: 12, AuthTagLength: 16, HashFunc: sha256.New, }, { Id: 0x0078, Type: ALGORITHM_TYPE_AES, DataKeyLength: 32, Mode: ALGORITHM_MODE_GCM, IVLength: 12, AuthTagLength: 16, HashFunc: nil, }, { Id: 0x0046, Type: ALGORITHM_TYPE_AES, DataKeyLength: 24, Mode: ALGORITHM_MODE_GCM, IVLength: 12, AuthTagLength: 16, HashFunc: nil, }, { Id: 0x0014, Type: ALGORITHM_TYPE_AES, DataKeyLength: 16, Mode: ALGORITHM_MODE_GCM, IVLength: 12, AuthTagLength: 16, HashFunc: nil, }, }
List of encryption algorithms for AWS Encryption SDK https://docs.aws.amazon.com/encryption-sdk/latest/developer-guide/algorithms-reference.html
Functions ¶
This section is empty.
Types ¶
type EncDataKey ¶
The following structs implements the AWS Encryption SDK Message Format https://docs.aws.amazon.com/encryption-sdk/latest/developer-guide/message-format.html
type KmsHelper ¶
type KmsHelper struct {
// contains filtered or unexported fields
}
func NewKmsHelper ¶
type Message ¶
type Message struct { Version uint8 Type uint8 AlgorithmId uint16 Algorithm *Algorithm MessageId [16]byte EncContextLength uint16 EncContext map[string]string EncDataKeyCount uint16 EncDataKeys []EncDataKey ContentType uint8 Reserved uint32 IVLength uint8 FrameLength uint32 HeaderAuth struct { IV []byte AuthTag []byte } Frames []Frame SignatureLength uint16 Signature []byte }
func NewMessage ¶
func NewMessage() *Message
Click to show internal directories.
Click to hide internal directories.