psaalgorithm

package
v0.0.0-...-f0a77d2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 25, 2022 License: Apache-2.0 Imports: 4 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	Algorithm_Hash_name = map[int32]string{
		0:  "HASH_NONE",
		1:  "MD2",
		2:  "MD4",
		3:  "MD5",
		4:  "RIPEMD160",
		5:  "SHA_1",
		6:  "SHA_224",
		7:  "SHA_256",
		8:  "SHA_384",
		9:  "SHA_512",
		10: "SHA_512_224",
		11: "SHA_512_256",
		12: "SHA3_224",
		13: "SHA3_256",
		14: "SHA3_384",
		15: "SHA3_512",
	}
	Algorithm_Hash_value = map[string]int32{
		"HASH_NONE":   0,
		"MD2":         1,
		"MD4":         2,
		"MD5":         3,
		"RIPEMD160":   4,
		"SHA_1":       5,
		"SHA_224":     6,
		"SHA_256":     7,
		"SHA_384":     8,
		"SHA_512":     9,
		"SHA_512_224": 10,
		"SHA_512_256": 11,
		"SHA3_224":    12,
		"SHA3_256":    13,
		"SHA3_384":    14,
		"SHA3_512":    15,
	}
)

Enum value maps for Algorithm_Hash.

View Source
var (
	Algorithm_Cipher_name = map[int32]string{
		0: "CIPHER_NONE",
		1: "STREAM_CIPHER",
		2: "CTR",
		3: "CFB",
		4: "OFB",
		5: "XTS",
		6: "ECB_NO_PADDING",
		7: "CBC_NO_PADDING",
		8: "CBC_PKCS7",
	}
	Algorithm_Cipher_value = map[string]int32{
		"CIPHER_NONE":    0,
		"STREAM_CIPHER":  1,
		"CTR":            2,
		"CFB":            3,
		"OFB":            4,
		"XTS":            5,
		"ECB_NO_PADDING": 6,
		"CBC_NO_PADDING": 7,
		"CBC_PKCS7":      8,
	}
)

Enum value maps for Algorithm_Cipher.

View Source
var (
	Algorithm_Aead_AeadWithDefaultLengthTag_name = map[int32]string{
		0: "AEAD_WITH_DEFAULT_LENGTH_TAG_NONE",
		1: "CCM",
		2: "GCM",
		3: "CHACHA20_POLY1305",
	}
	Algorithm_Aead_AeadWithDefaultLengthTag_value = map[string]int32{
		"AEAD_WITH_DEFAULT_LENGTH_TAG_NONE": 0,
		"CCM":                               1,
		"GCM":                               2,
		"CHACHA20_POLY1305":                 3,
	}
)

Enum value maps for Algorithm_Aead_AeadWithDefaultLengthTag.

View Source
var (
	Algorithm_KeyAgreement_Raw_name = map[int32]string{
		0: "RAW_NONE",
		1: "FFDH",
		2: "ECDH",
	}
	Algorithm_KeyAgreement_Raw_value = map[string]int32{
		"RAW_NONE": 0,
		"FFDH":     1,
		"ECDH":     2,
	}
)

Enum value maps for Algorithm_KeyAgreement_Raw.

View Source
var File_psa_algorithm_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type Algorithm

type Algorithm struct {

	// Types that are assignable to Variant:
	//	*Algorithm_None_
	//	*Algorithm_Hash_
	//	*Algorithm_Mac_
	//	*Algorithm_Cipher_
	//	*Algorithm_Aead_
	//	*Algorithm_AsymmetricSignature_
	//	*Algorithm_AsymmetricEncryption_
	//	*Algorithm_KeyAgreement_
	//	*Algorithm_KeyDerivation_
	Variant isAlgorithm_Variant `protobuf_oneof:"variant"`
	// contains filtered or unexported fields
}

func (*Algorithm) Descriptor deprecated

func (*Algorithm) Descriptor() ([]byte, []int)

Deprecated: Use Algorithm.ProtoReflect.Descriptor instead.

func (*Algorithm) GetAead

func (x *Algorithm) GetAead() *Algorithm_Aead

func (*Algorithm) GetAsymmetricEncryption

func (x *Algorithm) GetAsymmetricEncryption() *Algorithm_AsymmetricEncryption

func (*Algorithm) GetAsymmetricSignature

func (x *Algorithm) GetAsymmetricSignature() *Algorithm_AsymmetricSignature

func (*Algorithm) GetCipher

func (x *Algorithm) GetCipher() Algorithm_Cipher

func (*Algorithm) GetHash

func (x *Algorithm) GetHash() Algorithm_Hash

func (*Algorithm) GetKeyAgreement

func (x *Algorithm) GetKeyAgreement() *Algorithm_KeyAgreement

func (*Algorithm) GetKeyDerivation

func (x *Algorithm) GetKeyDerivation() *Algorithm_KeyDerivation

func (*Algorithm) GetMac

func (x *Algorithm) GetMac() *Algorithm_Mac

func (*Algorithm) GetNone

func (x *Algorithm) GetNone() *Algorithm_None

func (*Algorithm) GetVariant

func (m *Algorithm) GetVariant() isAlgorithm_Variant

func (*Algorithm) ProtoMessage

func (*Algorithm) ProtoMessage()

func (*Algorithm) ProtoReflect

func (x *Algorithm) ProtoReflect() protoreflect.Message

func (*Algorithm) Reset

func (x *Algorithm) Reset()

func (*Algorithm) String

func (x *Algorithm) String() string

type Algorithm_Aead

type Algorithm_Aead struct {

	// Types that are assignable to Variant:
	//	*Algorithm_Aead_AeadWithDefaultLengthTag_
	//	*Algorithm_Aead_AeadWithShortenedTag_
	Variant isAlgorithm_Aead_Variant `protobuf_oneof:"variant"`
	// contains filtered or unexported fields
}

func (*Algorithm_Aead) Descriptor deprecated

func (*Algorithm_Aead) Descriptor() ([]byte, []int)

Deprecated: Use Algorithm_Aead.ProtoReflect.Descriptor instead.

func (*Algorithm_Aead) GetAeadWithDefaultLengthTag

func (x *Algorithm_Aead) GetAeadWithDefaultLengthTag() Algorithm_Aead_AeadWithDefaultLengthTag

func (*Algorithm_Aead) GetAeadWithShortenedTag

func (x *Algorithm_Aead) GetAeadWithShortenedTag() *Algorithm_Aead_AeadWithShortenedTag

func (*Algorithm_Aead) GetVariant

func (m *Algorithm_Aead) GetVariant() isAlgorithm_Aead_Variant

func (*Algorithm_Aead) ProtoMessage

func (*Algorithm_Aead) ProtoMessage()

func (*Algorithm_Aead) ProtoReflect

func (x *Algorithm_Aead) ProtoReflect() protoreflect.Message

func (*Algorithm_Aead) Reset

func (x *Algorithm_Aead) Reset()

func (*Algorithm_Aead) String

func (x *Algorithm_Aead) String() string

type Algorithm_Aead_

type Algorithm_Aead_ struct {
	Aead *Algorithm_Aead `protobuf:"bytes,5,opt,name=aead,proto3,oneof"`
}

type Algorithm_Aead_AeadWithDefaultLengthTag

type Algorithm_Aead_AeadWithDefaultLengthTag int32
const (
	Algorithm_Aead_AEAD_WITH_DEFAULT_LENGTH_TAG_NONE Algorithm_Aead_AeadWithDefaultLengthTag = 0 // This default variant should not be used.
	Algorithm_Aead_CCM                               Algorithm_Aead_AeadWithDefaultLengthTag = 1
	Algorithm_Aead_GCM                               Algorithm_Aead_AeadWithDefaultLengthTag = 2
	Algorithm_Aead_CHACHA20_POLY1305                 Algorithm_Aead_AeadWithDefaultLengthTag = 3
)

func (Algorithm_Aead_AeadWithDefaultLengthTag) Descriptor

func (Algorithm_Aead_AeadWithDefaultLengthTag) Enum

func (Algorithm_Aead_AeadWithDefaultLengthTag) EnumDescriptor deprecated

func (Algorithm_Aead_AeadWithDefaultLengthTag) EnumDescriptor() ([]byte, []int)

Deprecated: Use Algorithm_Aead_AeadWithDefaultLengthTag.Descriptor instead.

func (Algorithm_Aead_AeadWithDefaultLengthTag) Number

func (Algorithm_Aead_AeadWithDefaultLengthTag) String

func (Algorithm_Aead_AeadWithDefaultLengthTag) Type

type Algorithm_Aead_AeadWithDefaultLengthTag_

type Algorithm_Aead_AeadWithDefaultLengthTag_ struct {
	AeadWithDefaultLengthTag Algorithm_Aead_AeadWithDefaultLengthTag `` /* 159-byte string literal not displayed */
}

type Algorithm_Aead_AeadWithShortenedTag

type Algorithm_Aead_AeadWithShortenedTag struct {
	AeadAlg   Algorithm_Aead_AeadWithDefaultLengthTag `` /* 142-byte string literal not displayed */
	TagLength uint32                                  `protobuf:"varint,2,opt,name=tag_length,json=tagLength,proto3" json:"tag_length,omitempty"`
	// contains filtered or unexported fields
}

func (*Algorithm_Aead_AeadWithShortenedTag) Descriptor deprecated

func (*Algorithm_Aead_AeadWithShortenedTag) Descriptor() ([]byte, []int)

Deprecated: Use Algorithm_Aead_AeadWithShortenedTag.ProtoReflect.Descriptor instead.

func (*Algorithm_Aead_AeadWithShortenedTag) GetAeadAlg

func (*Algorithm_Aead_AeadWithShortenedTag) GetTagLength

func (x *Algorithm_Aead_AeadWithShortenedTag) GetTagLength() uint32

func (*Algorithm_Aead_AeadWithShortenedTag) ProtoMessage

func (*Algorithm_Aead_AeadWithShortenedTag) ProtoMessage()

func (*Algorithm_Aead_AeadWithShortenedTag) ProtoReflect

func (*Algorithm_Aead_AeadWithShortenedTag) Reset

func (*Algorithm_Aead_AeadWithShortenedTag) String

type Algorithm_Aead_AeadWithShortenedTag_

type Algorithm_Aead_AeadWithShortenedTag_ struct {
	AeadWithShortenedTag *Algorithm_Aead_AeadWithShortenedTag `protobuf:"bytes,2,opt,name=aead_with_shortened_tag,json=aeadWithShortenedTag,proto3,oneof"`
}

type Algorithm_AsymmetricEncryption

type Algorithm_AsymmetricEncryption struct {

	// Types that are assignable to Variant:
	//	*Algorithm_AsymmetricEncryption_RsaPkcs1V15Crypt_
	//	*Algorithm_AsymmetricEncryption_RsaOaep_
	Variant isAlgorithm_AsymmetricEncryption_Variant `protobuf_oneof:"variant"`
	// contains filtered or unexported fields
}

func (*Algorithm_AsymmetricEncryption) Descriptor deprecated

func (*Algorithm_AsymmetricEncryption) Descriptor() ([]byte, []int)

Deprecated: Use Algorithm_AsymmetricEncryption.ProtoReflect.Descriptor instead.

func (*Algorithm_AsymmetricEncryption) GetRsaOaep

func (*Algorithm_AsymmetricEncryption) GetRsaPkcs1V15Crypt

func (*Algorithm_AsymmetricEncryption) GetVariant

func (m *Algorithm_AsymmetricEncryption) GetVariant() isAlgorithm_AsymmetricEncryption_Variant

func (*Algorithm_AsymmetricEncryption) ProtoMessage

func (*Algorithm_AsymmetricEncryption) ProtoMessage()

func (*Algorithm_AsymmetricEncryption) ProtoReflect

func (*Algorithm_AsymmetricEncryption) Reset

func (x *Algorithm_AsymmetricEncryption) Reset()

func (*Algorithm_AsymmetricEncryption) String

type Algorithm_AsymmetricEncryption_

type Algorithm_AsymmetricEncryption_ struct {
	AsymmetricEncryption *Algorithm_AsymmetricEncryption `protobuf:"bytes,7,opt,name=asymmetric_encryption,json=asymmetricEncryption,proto3,oneof"`
}

type Algorithm_AsymmetricEncryption_RsaOaep

type Algorithm_AsymmetricEncryption_RsaOaep struct {
	HashAlg Algorithm_Hash `protobuf:"varint,1,opt,name=hash_alg,json=hashAlg,proto3,enum=psa_algorithm.Algorithm_Hash" json:"hash_alg,omitempty"`
	// contains filtered or unexported fields
}

func (*Algorithm_AsymmetricEncryption_RsaOaep) Descriptor deprecated

func (*Algorithm_AsymmetricEncryption_RsaOaep) Descriptor() ([]byte, []int)

Deprecated: Use Algorithm_AsymmetricEncryption_RsaOaep.ProtoReflect.Descriptor instead.

func (*Algorithm_AsymmetricEncryption_RsaOaep) GetHashAlg

func (*Algorithm_AsymmetricEncryption_RsaOaep) ProtoMessage

func (*Algorithm_AsymmetricEncryption_RsaOaep) ProtoReflect

func (*Algorithm_AsymmetricEncryption_RsaOaep) Reset

func (*Algorithm_AsymmetricEncryption_RsaOaep) String

type Algorithm_AsymmetricEncryption_RsaOaep_

type Algorithm_AsymmetricEncryption_RsaOaep_ struct {
	RsaOaep *Algorithm_AsymmetricEncryption_RsaOaep `protobuf:"bytes,2,opt,name=rsa_oaep,json=rsaOaep,proto3,oneof"`
}

type Algorithm_AsymmetricEncryption_RsaPkcs1V15Crypt

type Algorithm_AsymmetricEncryption_RsaPkcs1V15Crypt struct {
	// contains filtered or unexported fields
}

func (*Algorithm_AsymmetricEncryption_RsaPkcs1V15Crypt) Descriptor deprecated

Deprecated: Use Algorithm_AsymmetricEncryption_RsaPkcs1V15Crypt.ProtoReflect.Descriptor instead.

func (*Algorithm_AsymmetricEncryption_RsaPkcs1V15Crypt) ProtoMessage

func (*Algorithm_AsymmetricEncryption_RsaPkcs1V15Crypt) ProtoReflect

func (*Algorithm_AsymmetricEncryption_RsaPkcs1V15Crypt) Reset

func (*Algorithm_AsymmetricEncryption_RsaPkcs1V15Crypt) String

type Algorithm_AsymmetricEncryption_RsaPkcs1V15Crypt_

type Algorithm_AsymmetricEncryption_RsaPkcs1V15Crypt_ struct {
	RsaPkcs1V15Crypt *Algorithm_AsymmetricEncryption_RsaPkcs1V15Crypt `protobuf:"bytes,1,opt,name=rsa_pkcs1v15_crypt,json=rsaPkcs1v15Crypt,proto3,oneof"`
}

type Algorithm_AsymmetricSignature

type Algorithm_AsymmetricSignature struct {

	// Types that are assignable to Variant:
	//	*Algorithm_AsymmetricSignature_RsaPkcs1V15Sign_
	//	*Algorithm_AsymmetricSignature_RsaPkcs1V15SignRaw_
	//	*Algorithm_AsymmetricSignature_RsaPss_
	//	*Algorithm_AsymmetricSignature_Ecdsa_
	//	*Algorithm_AsymmetricSignature_EcdsaAny_
	//	*Algorithm_AsymmetricSignature_DeterministicEcdsa_
	Variant isAlgorithm_AsymmetricSignature_Variant `protobuf_oneof:"variant"`
	// contains filtered or unexported fields
}

func (*Algorithm_AsymmetricSignature) Descriptor deprecated

func (*Algorithm_AsymmetricSignature) Descriptor() ([]byte, []int)

Deprecated: Use Algorithm_AsymmetricSignature.ProtoReflect.Descriptor instead.

func (*Algorithm_AsymmetricSignature) GetDeterministicEcdsa

func (*Algorithm_AsymmetricSignature) GetEcdsa

func (*Algorithm_AsymmetricSignature) GetEcdsaAny

func (*Algorithm_AsymmetricSignature) GetRsaPkcs1V15Sign

func (*Algorithm_AsymmetricSignature) GetRsaPkcs1V15SignRaw

func (*Algorithm_AsymmetricSignature) GetRsaPss

func (*Algorithm_AsymmetricSignature) GetVariant

func (m *Algorithm_AsymmetricSignature) GetVariant() isAlgorithm_AsymmetricSignature_Variant

func (*Algorithm_AsymmetricSignature) ProtoMessage

func (*Algorithm_AsymmetricSignature) ProtoMessage()

func (*Algorithm_AsymmetricSignature) ProtoReflect

func (*Algorithm_AsymmetricSignature) Reset

func (x *Algorithm_AsymmetricSignature) Reset()

func (*Algorithm_AsymmetricSignature) String

type Algorithm_AsymmetricSignature_

type Algorithm_AsymmetricSignature_ struct {
	AsymmetricSignature *Algorithm_AsymmetricSignature `protobuf:"bytes,6,opt,name=asymmetric_signature,json=asymmetricSignature,proto3,oneof"`
}

type Algorithm_AsymmetricSignature_DeterministicEcdsa

type Algorithm_AsymmetricSignature_DeterministicEcdsa struct {
	HashAlg *Algorithm_AsymmetricSignature_SignHash `protobuf:"bytes,1,opt,name=hash_alg,json=hashAlg,proto3" json:"hash_alg,omitempty"`
	// contains filtered or unexported fields
}

func (*Algorithm_AsymmetricSignature_DeterministicEcdsa) Descriptor deprecated

Deprecated: Use Algorithm_AsymmetricSignature_DeterministicEcdsa.ProtoReflect.Descriptor instead.

func (*Algorithm_AsymmetricSignature_DeterministicEcdsa) GetHashAlg

func (*Algorithm_AsymmetricSignature_DeterministicEcdsa) ProtoMessage

func (*Algorithm_AsymmetricSignature_DeterministicEcdsa) ProtoReflect

func (*Algorithm_AsymmetricSignature_DeterministicEcdsa) Reset

func (*Algorithm_AsymmetricSignature_DeterministicEcdsa) String

type Algorithm_AsymmetricSignature_DeterministicEcdsa_

type Algorithm_AsymmetricSignature_DeterministicEcdsa_ struct {
	DeterministicEcdsa *Algorithm_AsymmetricSignature_DeterministicEcdsa `protobuf:"bytes,6,opt,name=deterministic_ecdsa,json=deterministicEcdsa,proto3,oneof"`
}

type Algorithm_AsymmetricSignature_Ecdsa

type Algorithm_AsymmetricSignature_Ecdsa struct {
	HashAlg *Algorithm_AsymmetricSignature_SignHash `protobuf:"bytes,1,opt,name=hash_alg,json=hashAlg,proto3" json:"hash_alg,omitempty"`
	// contains filtered or unexported fields
}

func (*Algorithm_AsymmetricSignature_Ecdsa) Descriptor deprecated

func (*Algorithm_AsymmetricSignature_Ecdsa) Descriptor() ([]byte, []int)

Deprecated: Use Algorithm_AsymmetricSignature_Ecdsa.ProtoReflect.Descriptor instead.

func (*Algorithm_AsymmetricSignature_Ecdsa) GetHashAlg

func (*Algorithm_AsymmetricSignature_Ecdsa) ProtoMessage

func (*Algorithm_AsymmetricSignature_Ecdsa) ProtoMessage()

func (*Algorithm_AsymmetricSignature_Ecdsa) ProtoReflect

func (*Algorithm_AsymmetricSignature_Ecdsa) Reset

func (*Algorithm_AsymmetricSignature_Ecdsa) String

type Algorithm_AsymmetricSignature_EcdsaAny

type Algorithm_AsymmetricSignature_EcdsaAny struct {
	// contains filtered or unexported fields
}

func (*Algorithm_AsymmetricSignature_EcdsaAny) Descriptor deprecated

func (*Algorithm_AsymmetricSignature_EcdsaAny) Descriptor() ([]byte, []int)

Deprecated: Use Algorithm_AsymmetricSignature_EcdsaAny.ProtoReflect.Descriptor instead.

func (*Algorithm_AsymmetricSignature_EcdsaAny) ProtoMessage

func (*Algorithm_AsymmetricSignature_EcdsaAny) ProtoReflect

func (*Algorithm_AsymmetricSignature_EcdsaAny) Reset

func (*Algorithm_AsymmetricSignature_EcdsaAny) String

type Algorithm_AsymmetricSignature_EcdsaAny_

type Algorithm_AsymmetricSignature_EcdsaAny_ struct {
	EcdsaAny *Algorithm_AsymmetricSignature_EcdsaAny `protobuf:"bytes,5,opt,name=ecdsa_any,json=ecdsaAny,proto3,oneof"`
}

type Algorithm_AsymmetricSignature_Ecdsa_

type Algorithm_AsymmetricSignature_Ecdsa_ struct {
	Ecdsa *Algorithm_AsymmetricSignature_Ecdsa `protobuf:"bytes,4,opt,name=ecdsa,proto3,oneof"`
}

type Algorithm_AsymmetricSignature_RsaPkcs1V15Sign

type Algorithm_AsymmetricSignature_RsaPkcs1V15Sign struct {
	HashAlg *Algorithm_AsymmetricSignature_SignHash `protobuf:"bytes,1,opt,name=hash_alg,json=hashAlg,proto3" json:"hash_alg,omitempty"`
	// contains filtered or unexported fields
}

func (*Algorithm_AsymmetricSignature_RsaPkcs1V15Sign) Descriptor deprecated

Deprecated: Use Algorithm_AsymmetricSignature_RsaPkcs1V15Sign.ProtoReflect.Descriptor instead.

func (*Algorithm_AsymmetricSignature_RsaPkcs1V15Sign) GetHashAlg

func (*Algorithm_AsymmetricSignature_RsaPkcs1V15Sign) ProtoMessage

func (*Algorithm_AsymmetricSignature_RsaPkcs1V15Sign) ProtoReflect

func (*Algorithm_AsymmetricSignature_RsaPkcs1V15Sign) Reset

func (*Algorithm_AsymmetricSignature_RsaPkcs1V15Sign) String

type Algorithm_AsymmetricSignature_RsaPkcs1V15SignRaw

type Algorithm_AsymmetricSignature_RsaPkcs1V15SignRaw struct {
	// contains filtered or unexported fields
}

func (*Algorithm_AsymmetricSignature_RsaPkcs1V15SignRaw) Descriptor deprecated

Deprecated: Use Algorithm_AsymmetricSignature_RsaPkcs1V15SignRaw.ProtoReflect.Descriptor instead.

func (*Algorithm_AsymmetricSignature_RsaPkcs1V15SignRaw) ProtoMessage

func (*Algorithm_AsymmetricSignature_RsaPkcs1V15SignRaw) ProtoReflect

func (*Algorithm_AsymmetricSignature_RsaPkcs1V15SignRaw) Reset

func (*Algorithm_AsymmetricSignature_RsaPkcs1V15SignRaw) String

type Algorithm_AsymmetricSignature_RsaPkcs1V15SignRaw_

type Algorithm_AsymmetricSignature_RsaPkcs1V15SignRaw_ struct {
	RsaPkcs1V15SignRaw *Algorithm_AsymmetricSignature_RsaPkcs1V15SignRaw `protobuf:"bytes,2,opt,name=rsa_pkcs1v15_sign_raw,json=rsaPkcs1v15SignRaw,proto3,oneof"`
}

type Algorithm_AsymmetricSignature_RsaPkcs1V15Sign_

type Algorithm_AsymmetricSignature_RsaPkcs1V15Sign_ struct {
	RsaPkcs1V15Sign *Algorithm_AsymmetricSignature_RsaPkcs1V15Sign `protobuf:"bytes,1,opt,name=rsa_pkcs1v15_sign,json=rsaPkcs1v15Sign,proto3,oneof"`
}

type Algorithm_AsymmetricSignature_RsaPss

type Algorithm_AsymmetricSignature_RsaPss struct {
	HashAlg *Algorithm_AsymmetricSignature_SignHash `protobuf:"bytes,1,opt,name=hash_alg,json=hashAlg,proto3" json:"hash_alg,omitempty"`
	// contains filtered or unexported fields
}

func (*Algorithm_AsymmetricSignature_RsaPss) Descriptor deprecated

func (*Algorithm_AsymmetricSignature_RsaPss) Descriptor() ([]byte, []int)

Deprecated: Use Algorithm_AsymmetricSignature_RsaPss.ProtoReflect.Descriptor instead.

func (*Algorithm_AsymmetricSignature_RsaPss) GetHashAlg

func (*Algorithm_AsymmetricSignature_RsaPss) ProtoMessage

func (*Algorithm_AsymmetricSignature_RsaPss) ProtoMessage()

func (*Algorithm_AsymmetricSignature_RsaPss) ProtoReflect

func (*Algorithm_AsymmetricSignature_RsaPss) Reset

func (*Algorithm_AsymmetricSignature_RsaPss) String

type Algorithm_AsymmetricSignature_RsaPss_

type Algorithm_AsymmetricSignature_RsaPss_ struct {
	RsaPss *Algorithm_AsymmetricSignature_RsaPss `protobuf:"bytes,3,opt,name=rsa_pss,json=rsaPss,proto3,oneof"`
}

type Algorithm_AsymmetricSignature_SignHash

type Algorithm_AsymmetricSignature_SignHash struct {

	// Types that are assignable to Variant:
	//	*Algorithm_AsymmetricSignature_SignHash_Any_
	//	*Algorithm_AsymmetricSignature_SignHash_Specific
	Variant isAlgorithm_AsymmetricSignature_SignHash_Variant `protobuf_oneof:"variant"`
	// contains filtered or unexported fields
}

func (*Algorithm_AsymmetricSignature_SignHash) Descriptor deprecated

func (*Algorithm_AsymmetricSignature_SignHash) Descriptor() ([]byte, []int)

Deprecated: Use Algorithm_AsymmetricSignature_SignHash.ProtoReflect.Descriptor instead.

func (*Algorithm_AsymmetricSignature_SignHash) GetAny

func (*Algorithm_AsymmetricSignature_SignHash) GetSpecific

func (*Algorithm_AsymmetricSignature_SignHash) GetVariant

func (m *Algorithm_AsymmetricSignature_SignHash) GetVariant() isAlgorithm_AsymmetricSignature_SignHash_Variant

func (*Algorithm_AsymmetricSignature_SignHash) ProtoMessage

func (*Algorithm_AsymmetricSignature_SignHash) ProtoReflect

func (*Algorithm_AsymmetricSignature_SignHash) Reset

func (*Algorithm_AsymmetricSignature_SignHash) String

type Algorithm_AsymmetricSignature_SignHash_Any

type Algorithm_AsymmetricSignature_SignHash_Any struct {
	// contains filtered or unexported fields
}

func (*Algorithm_AsymmetricSignature_SignHash_Any) Descriptor deprecated

Deprecated: Use Algorithm_AsymmetricSignature_SignHash_Any.ProtoReflect.Descriptor instead.

func (*Algorithm_AsymmetricSignature_SignHash_Any) ProtoMessage

func (*Algorithm_AsymmetricSignature_SignHash_Any) ProtoReflect

func (*Algorithm_AsymmetricSignature_SignHash_Any) Reset

func (*Algorithm_AsymmetricSignature_SignHash_Any) String

type Algorithm_AsymmetricSignature_SignHash_Any_

type Algorithm_AsymmetricSignature_SignHash_Any_ struct {
	Any *Algorithm_AsymmetricSignature_SignHash_Any `protobuf:"bytes,1,opt,name=any,proto3,oneof"`
}

type Algorithm_AsymmetricSignature_SignHash_Specific

type Algorithm_AsymmetricSignature_SignHash_Specific struct {
	Specific Algorithm_Hash `protobuf:"varint,2,opt,name=specific,proto3,enum=psa_algorithm.Algorithm_Hash,oneof"`
}

type Algorithm_Cipher

type Algorithm_Cipher int32
const (
	Algorithm_CIPHER_NONE    Algorithm_Cipher = 0 // This default variant should not be used.
	Algorithm_STREAM_CIPHER  Algorithm_Cipher = 1
	Algorithm_CTR            Algorithm_Cipher = 2
	Algorithm_CFB            Algorithm_Cipher = 3
	Algorithm_OFB            Algorithm_Cipher = 4
	Algorithm_XTS            Algorithm_Cipher = 5
	Algorithm_ECB_NO_PADDING Algorithm_Cipher = 6
	Algorithm_CBC_NO_PADDING Algorithm_Cipher = 7
	Algorithm_CBC_PKCS7      Algorithm_Cipher = 8
)

func (Algorithm_Cipher) Descriptor

func (Algorithm_Cipher) Enum

func (Algorithm_Cipher) EnumDescriptor deprecated

func (Algorithm_Cipher) EnumDescriptor() ([]byte, []int)

Deprecated: Use Algorithm_Cipher.Descriptor instead.

func (Algorithm_Cipher) Number

func (Algorithm_Cipher) String

func (x Algorithm_Cipher) String() string

func (Algorithm_Cipher) Type

type Algorithm_Cipher_

type Algorithm_Cipher_ struct {
	Cipher Algorithm_Cipher `protobuf:"varint,4,opt,name=cipher,proto3,enum=psa_algorithm.Algorithm_Cipher,oneof"`
}

type Algorithm_Hash

type Algorithm_Hash int32
const (
	Algorithm_HASH_NONE Algorithm_Hash = 0 // This default variant should not be used.
	// Deprecated: Do not use.
	Algorithm_MD2 Algorithm_Hash = 1
	// Deprecated: Do not use.
	Algorithm_MD4 Algorithm_Hash = 2
	// Deprecated: Do not use.
	Algorithm_MD5       Algorithm_Hash = 3
	Algorithm_RIPEMD160 Algorithm_Hash = 4
	// Deprecated: Do not use.
	Algorithm_SHA_1       Algorithm_Hash = 5
	Algorithm_SHA_224     Algorithm_Hash = 6
	Algorithm_SHA_256     Algorithm_Hash = 7
	Algorithm_SHA_384     Algorithm_Hash = 8
	Algorithm_SHA_512     Algorithm_Hash = 9
	Algorithm_SHA_512_224 Algorithm_Hash = 10
	Algorithm_SHA_512_256 Algorithm_Hash = 11
	Algorithm_SHA3_224    Algorithm_Hash = 12
	Algorithm_SHA3_256    Algorithm_Hash = 13
	Algorithm_SHA3_384    Algorithm_Hash = 14
	Algorithm_SHA3_512    Algorithm_Hash = 15
)

func (Algorithm_Hash) Descriptor

func (Algorithm_Hash) Enum

func (x Algorithm_Hash) Enum() *Algorithm_Hash

func (Algorithm_Hash) EnumDescriptor deprecated

func (Algorithm_Hash) EnumDescriptor() ([]byte, []int)

Deprecated: Use Algorithm_Hash.Descriptor instead.

func (Algorithm_Hash) Number

func (Algorithm_Hash) String

func (x Algorithm_Hash) String() string

func (Algorithm_Hash) Type

type Algorithm_Hash_

type Algorithm_Hash_ struct {
	Hash Algorithm_Hash `protobuf:"varint,2,opt,name=hash,proto3,enum=psa_algorithm.Algorithm_Hash,oneof"`
}

type Algorithm_KeyAgreement

type Algorithm_KeyAgreement struct {

	// Types that are assignable to Variant:
	//	*Algorithm_KeyAgreement_Raw_
	//	*Algorithm_KeyAgreement_WithKeyDerivation_
	Variant isAlgorithm_KeyAgreement_Variant `protobuf_oneof:"variant"`
	// contains filtered or unexported fields
}

func (*Algorithm_KeyAgreement) Descriptor deprecated

func (*Algorithm_KeyAgreement) Descriptor() ([]byte, []int)

Deprecated: Use Algorithm_KeyAgreement.ProtoReflect.Descriptor instead.

func (*Algorithm_KeyAgreement) GetRaw

func (*Algorithm_KeyAgreement) GetVariant

func (m *Algorithm_KeyAgreement) GetVariant() isAlgorithm_KeyAgreement_Variant

func (*Algorithm_KeyAgreement) GetWithKeyDerivation

func (*Algorithm_KeyAgreement) ProtoMessage

func (*Algorithm_KeyAgreement) ProtoMessage()

func (*Algorithm_KeyAgreement) ProtoReflect

func (x *Algorithm_KeyAgreement) ProtoReflect() protoreflect.Message

func (*Algorithm_KeyAgreement) Reset

func (x *Algorithm_KeyAgreement) Reset()

func (*Algorithm_KeyAgreement) String

func (x *Algorithm_KeyAgreement) String() string

type Algorithm_KeyAgreement_

type Algorithm_KeyAgreement_ struct {
	KeyAgreement *Algorithm_KeyAgreement `protobuf:"bytes,8,opt,name=key_agreement,json=keyAgreement,proto3,oneof"`
}

type Algorithm_KeyAgreement_Raw

type Algorithm_KeyAgreement_Raw int32
const (
	Algorithm_KeyAgreement_RAW_NONE Algorithm_KeyAgreement_Raw = 0 // This default variant should not be used.
	Algorithm_KeyAgreement_FFDH     Algorithm_KeyAgreement_Raw = 1
	Algorithm_KeyAgreement_ECDH     Algorithm_KeyAgreement_Raw = 2
)

func (Algorithm_KeyAgreement_Raw) Descriptor

func (Algorithm_KeyAgreement_Raw) Enum

func (Algorithm_KeyAgreement_Raw) EnumDescriptor deprecated

func (Algorithm_KeyAgreement_Raw) EnumDescriptor() ([]byte, []int)

Deprecated: Use Algorithm_KeyAgreement_Raw.Descriptor instead.

func (Algorithm_KeyAgreement_Raw) Number

func (Algorithm_KeyAgreement_Raw) String

func (Algorithm_KeyAgreement_Raw) Type

type Algorithm_KeyAgreement_Raw_

type Algorithm_KeyAgreement_Raw_ struct {
	Raw Algorithm_KeyAgreement_Raw `protobuf:"varint,1,opt,name=raw,proto3,enum=psa_algorithm.Algorithm_KeyAgreement_Raw,oneof"`
}

type Algorithm_KeyAgreement_WithKeyDerivation

type Algorithm_KeyAgreement_WithKeyDerivation struct {
	KaAlg  Algorithm_KeyAgreement_Raw `protobuf:"varint,1,opt,name=ka_alg,json=kaAlg,proto3,enum=psa_algorithm.Algorithm_KeyAgreement_Raw" json:"ka_alg,omitempty"`
	KdfAlg *Algorithm_KeyDerivation   `protobuf:"bytes,2,opt,name=kdf_alg,json=kdfAlg,proto3" json:"kdf_alg,omitempty"`
	// contains filtered or unexported fields
}

func (*Algorithm_KeyAgreement_WithKeyDerivation) Descriptor deprecated

func (*Algorithm_KeyAgreement_WithKeyDerivation) Descriptor() ([]byte, []int)

Deprecated: Use Algorithm_KeyAgreement_WithKeyDerivation.ProtoReflect.Descriptor instead.

func (*Algorithm_KeyAgreement_WithKeyDerivation) GetKaAlg

func (*Algorithm_KeyAgreement_WithKeyDerivation) GetKdfAlg

func (*Algorithm_KeyAgreement_WithKeyDerivation) ProtoMessage

func (*Algorithm_KeyAgreement_WithKeyDerivation) ProtoReflect

func (*Algorithm_KeyAgreement_WithKeyDerivation) Reset

func (*Algorithm_KeyAgreement_WithKeyDerivation) String

type Algorithm_KeyAgreement_WithKeyDerivation_

type Algorithm_KeyAgreement_WithKeyDerivation_ struct {
	WithKeyDerivation *Algorithm_KeyAgreement_WithKeyDerivation `protobuf:"bytes,2,opt,name=with_key_derivation,json=withKeyDerivation,proto3,oneof"`
}

type Algorithm_KeyDerivation

type Algorithm_KeyDerivation struct {

	// Types that are assignable to Variant:
	//	*Algorithm_KeyDerivation_Hkdf_
	//	*Algorithm_KeyDerivation_Tls12Prf_
	//	*Algorithm_KeyDerivation_Tls12PskToMs_
	Variant isAlgorithm_KeyDerivation_Variant `protobuf_oneof:"variant"`
	// contains filtered or unexported fields
}

func (*Algorithm_KeyDerivation) Descriptor deprecated

func (*Algorithm_KeyDerivation) Descriptor() ([]byte, []int)

Deprecated: Use Algorithm_KeyDerivation.ProtoReflect.Descriptor instead.

func (*Algorithm_KeyDerivation) GetHkdf

func (*Algorithm_KeyDerivation) GetTls12Prf

func (*Algorithm_KeyDerivation) GetTls12PskToMs

func (*Algorithm_KeyDerivation) GetVariant

func (m *Algorithm_KeyDerivation) GetVariant() isAlgorithm_KeyDerivation_Variant

func (*Algorithm_KeyDerivation) ProtoMessage

func (*Algorithm_KeyDerivation) ProtoMessage()

func (*Algorithm_KeyDerivation) ProtoReflect

func (x *Algorithm_KeyDerivation) ProtoReflect() protoreflect.Message

func (*Algorithm_KeyDerivation) Reset

func (x *Algorithm_KeyDerivation) Reset()

func (*Algorithm_KeyDerivation) String

func (x *Algorithm_KeyDerivation) String() string

type Algorithm_KeyDerivation_

type Algorithm_KeyDerivation_ struct {
	KeyDerivation *Algorithm_KeyDerivation `protobuf:"bytes,9,opt,name=key_derivation,json=keyDerivation,proto3,oneof"`
}

type Algorithm_KeyDerivation_Hkdf

type Algorithm_KeyDerivation_Hkdf struct {
	HashAlg Algorithm_Hash `protobuf:"varint,1,opt,name=hash_alg,json=hashAlg,proto3,enum=psa_algorithm.Algorithm_Hash" json:"hash_alg,omitempty"`
	// contains filtered or unexported fields
}

func (*Algorithm_KeyDerivation_Hkdf) Descriptor deprecated

func (*Algorithm_KeyDerivation_Hkdf) Descriptor() ([]byte, []int)

Deprecated: Use Algorithm_KeyDerivation_Hkdf.ProtoReflect.Descriptor instead.

func (*Algorithm_KeyDerivation_Hkdf) GetHashAlg

func (*Algorithm_KeyDerivation_Hkdf) ProtoMessage

func (*Algorithm_KeyDerivation_Hkdf) ProtoMessage()

func (*Algorithm_KeyDerivation_Hkdf) ProtoReflect

func (*Algorithm_KeyDerivation_Hkdf) Reset

func (x *Algorithm_KeyDerivation_Hkdf) Reset()

func (*Algorithm_KeyDerivation_Hkdf) String

type Algorithm_KeyDerivation_Hkdf_

type Algorithm_KeyDerivation_Hkdf_ struct {
	Hkdf *Algorithm_KeyDerivation_Hkdf `protobuf:"bytes,1,opt,name=hkdf,proto3,oneof"`
}

type Algorithm_KeyDerivation_Tls12Prf

type Algorithm_KeyDerivation_Tls12Prf struct {
	HashAlg Algorithm_Hash `protobuf:"varint,1,opt,name=hash_alg,json=hashAlg,proto3,enum=psa_algorithm.Algorithm_Hash" json:"hash_alg,omitempty"`
	// contains filtered or unexported fields
}

func (*Algorithm_KeyDerivation_Tls12Prf) Descriptor deprecated

func (*Algorithm_KeyDerivation_Tls12Prf) Descriptor() ([]byte, []int)

Deprecated: Use Algorithm_KeyDerivation_Tls12Prf.ProtoReflect.Descriptor instead.

func (*Algorithm_KeyDerivation_Tls12Prf) GetHashAlg

func (*Algorithm_KeyDerivation_Tls12Prf) ProtoMessage

func (*Algorithm_KeyDerivation_Tls12Prf) ProtoMessage()

func (*Algorithm_KeyDerivation_Tls12Prf) ProtoReflect

func (*Algorithm_KeyDerivation_Tls12Prf) Reset

func (*Algorithm_KeyDerivation_Tls12Prf) String

type Algorithm_KeyDerivation_Tls12Prf_

type Algorithm_KeyDerivation_Tls12Prf_ struct {
	Tls12Prf *Algorithm_KeyDerivation_Tls12Prf `protobuf:"bytes,2,opt,name=tls12_prf,json=tls12Prf,proto3,oneof"`
}

type Algorithm_KeyDerivation_Tls12PskToMs

type Algorithm_KeyDerivation_Tls12PskToMs struct {
	HashAlg Algorithm_Hash `protobuf:"varint,1,opt,name=hash_alg,json=hashAlg,proto3,enum=psa_algorithm.Algorithm_Hash" json:"hash_alg,omitempty"`
	// contains filtered or unexported fields
}

func (*Algorithm_KeyDerivation_Tls12PskToMs) Descriptor deprecated

func (*Algorithm_KeyDerivation_Tls12PskToMs) Descriptor() ([]byte, []int)

Deprecated: Use Algorithm_KeyDerivation_Tls12PskToMs.ProtoReflect.Descriptor instead.

func (*Algorithm_KeyDerivation_Tls12PskToMs) GetHashAlg

func (*Algorithm_KeyDerivation_Tls12PskToMs) ProtoMessage

func (*Algorithm_KeyDerivation_Tls12PskToMs) ProtoMessage()

func (*Algorithm_KeyDerivation_Tls12PskToMs) ProtoReflect

func (*Algorithm_KeyDerivation_Tls12PskToMs) Reset

func (*Algorithm_KeyDerivation_Tls12PskToMs) String

type Algorithm_KeyDerivation_Tls12PskToMs_

type Algorithm_KeyDerivation_Tls12PskToMs_ struct {
	Tls12PskToMs *Algorithm_KeyDerivation_Tls12PskToMs `protobuf:"bytes,3,opt,name=tls12_psk_to_ms,json=tls12PskToMs,proto3,oneof"`
}

type Algorithm_Mac

type Algorithm_Mac struct {

	// Types that are assignable to Variant:
	//	*Algorithm_Mac_FullLength_
	//	*Algorithm_Mac_Truncated_
	Variant isAlgorithm_Mac_Variant `protobuf_oneof:"variant"`
	// contains filtered or unexported fields
}

func (*Algorithm_Mac) Descriptor deprecated

func (*Algorithm_Mac) Descriptor() ([]byte, []int)

Deprecated: Use Algorithm_Mac.ProtoReflect.Descriptor instead.

func (*Algorithm_Mac) GetFullLength

func (x *Algorithm_Mac) GetFullLength() *Algorithm_Mac_FullLength

func (*Algorithm_Mac) GetTruncated

func (x *Algorithm_Mac) GetTruncated() *Algorithm_Mac_Truncated

func (*Algorithm_Mac) GetVariant

func (m *Algorithm_Mac) GetVariant() isAlgorithm_Mac_Variant

func (*Algorithm_Mac) ProtoMessage

func (*Algorithm_Mac) ProtoMessage()

func (*Algorithm_Mac) ProtoReflect

func (x *Algorithm_Mac) ProtoReflect() protoreflect.Message

func (*Algorithm_Mac) Reset

func (x *Algorithm_Mac) Reset()

func (*Algorithm_Mac) String

func (x *Algorithm_Mac) String() string

type Algorithm_Mac_

type Algorithm_Mac_ struct {
	Mac *Algorithm_Mac `protobuf:"bytes,3,opt,name=mac,proto3,oneof"`
}

type Algorithm_Mac_FullLength

type Algorithm_Mac_FullLength struct {

	// Types that are assignable to Variant:
	//	*Algorithm_Mac_FullLength_Hmac_
	//	*Algorithm_Mac_FullLength_CbcMac_
	//	*Algorithm_Mac_FullLength_Cmac_
	Variant isAlgorithm_Mac_FullLength_Variant `protobuf_oneof:"variant"`
	// contains filtered or unexported fields
}

func (*Algorithm_Mac_FullLength) Descriptor deprecated

func (*Algorithm_Mac_FullLength) Descriptor() ([]byte, []int)

Deprecated: Use Algorithm_Mac_FullLength.ProtoReflect.Descriptor instead.

func (*Algorithm_Mac_FullLength) GetCbcMac

func (*Algorithm_Mac_FullLength) GetCmac

func (*Algorithm_Mac_FullLength) GetHmac

func (*Algorithm_Mac_FullLength) GetVariant

func (m *Algorithm_Mac_FullLength) GetVariant() isAlgorithm_Mac_FullLength_Variant

func (*Algorithm_Mac_FullLength) ProtoMessage

func (*Algorithm_Mac_FullLength) ProtoMessage()

func (*Algorithm_Mac_FullLength) ProtoReflect

func (x *Algorithm_Mac_FullLength) ProtoReflect() protoreflect.Message

func (*Algorithm_Mac_FullLength) Reset

func (x *Algorithm_Mac_FullLength) Reset()

func (*Algorithm_Mac_FullLength) String

func (x *Algorithm_Mac_FullLength) String() string

type Algorithm_Mac_FullLength_

type Algorithm_Mac_FullLength_ struct {
	FullLength *Algorithm_Mac_FullLength `protobuf:"bytes,1,opt,name=full_length,json=fullLength,proto3,oneof"`
}

type Algorithm_Mac_FullLength_CbcMac

type Algorithm_Mac_FullLength_CbcMac struct {
	// contains filtered or unexported fields
}

func (*Algorithm_Mac_FullLength_CbcMac) Descriptor deprecated

func (*Algorithm_Mac_FullLength_CbcMac) Descriptor() ([]byte, []int)

Deprecated: Use Algorithm_Mac_FullLength_CbcMac.ProtoReflect.Descriptor instead.

func (*Algorithm_Mac_FullLength_CbcMac) ProtoMessage

func (*Algorithm_Mac_FullLength_CbcMac) ProtoMessage()

func (*Algorithm_Mac_FullLength_CbcMac) ProtoReflect

func (*Algorithm_Mac_FullLength_CbcMac) Reset

func (*Algorithm_Mac_FullLength_CbcMac) String

type Algorithm_Mac_FullLength_CbcMac_

type Algorithm_Mac_FullLength_CbcMac_ struct {
	CbcMac *Algorithm_Mac_FullLength_CbcMac `protobuf:"bytes,2,opt,name=cbc_mac,json=cbcMac,proto3,oneof"`
}

type Algorithm_Mac_FullLength_Cmac

type Algorithm_Mac_FullLength_Cmac struct {
	// contains filtered or unexported fields
}

func (*Algorithm_Mac_FullLength_Cmac) Descriptor deprecated

func (*Algorithm_Mac_FullLength_Cmac) Descriptor() ([]byte, []int)

Deprecated: Use Algorithm_Mac_FullLength_Cmac.ProtoReflect.Descriptor instead.

func (*Algorithm_Mac_FullLength_Cmac) ProtoMessage

func (*Algorithm_Mac_FullLength_Cmac) ProtoMessage()

func (*Algorithm_Mac_FullLength_Cmac) ProtoReflect

func (*Algorithm_Mac_FullLength_Cmac) Reset

func (x *Algorithm_Mac_FullLength_Cmac) Reset()

func (*Algorithm_Mac_FullLength_Cmac) String

type Algorithm_Mac_FullLength_Cmac_

type Algorithm_Mac_FullLength_Cmac_ struct {
	Cmac *Algorithm_Mac_FullLength_Cmac `protobuf:"bytes,3,opt,name=cmac,proto3,oneof"`
}

type Algorithm_Mac_FullLength_Hmac

type Algorithm_Mac_FullLength_Hmac struct {
	HashAlg Algorithm_Hash `protobuf:"varint,1,opt,name=hash_alg,json=hashAlg,proto3,enum=psa_algorithm.Algorithm_Hash" json:"hash_alg,omitempty"`
	// contains filtered or unexported fields
}

func (*Algorithm_Mac_FullLength_Hmac) Descriptor deprecated

func (*Algorithm_Mac_FullLength_Hmac) Descriptor() ([]byte, []int)

Deprecated: Use Algorithm_Mac_FullLength_Hmac.ProtoReflect.Descriptor instead.

func (*Algorithm_Mac_FullLength_Hmac) GetHashAlg

func (*Algorithm_Mac_FullLength_Hmac) ProtoMessage

func (*Algorithm_Mac_FullLength_Hmac) ProtoMessage()

func (*Algorithm_Mac_FullLength_Hmac) ProtoReflect

func (*Algorithm_Mac_FullLength_Hmac) Reset

func (x *Algorithm_Mac_FullLength_Hmac) Reset()

func (*Algorithm_Mac_FullLength_Hmac) String

type Algorithm_Mac_FullLength_Hmac_

type Algorithm_Mac_FullLength_Hmac_ struct {
	Hmac *Algorithm_Mac_FullLength_Hmac `protobuf:"bytes,1,opt,name=hmac,proto3,oneof"`
}

type Algorithm_Mac_Truncated

type Algorithm_Mac_Truncated struct {
	MacAlg    *Algorithm_Mac_FullLength `protobuf:"bytes,1,opt,name=mac_alg,json=macAlg,proto3" json:"mac_alg,omitempty"`
	MacLength uint32                    `protobuf:"varint,2,opt,name=mac_length,json=macLength,proto3" json:"mac_length,omitempty"`
	// contains filtered or unexported fields
}

func (*Algorithm_Mac_Truncated) Descriptor deprecated

func (*Algorithm_Mac_Truncated) Descriptor() ([]byte, []int)

Deprecated: Use Algorithm_Mac_Truncated.ProtoReflect.Descriptor instead.

func (*Algorithm_Mac_Truncated) GetMacAlg

func (*Algorithm_Mac_Truncated) GetMacLength

func (x *Algorithm_Mac_Truncated) GetMacLength() uint32

func (*Algorithm_Mac_Truncated) ProtoMessage

func (*Algorithm_Mac_Truncated) ProtoMessage()

func (*Algorithm_Mac_Truncated) ProtoReflect

func (x *Algorithm_Mac_Truncated) ProtoReflect() protoreflect.Message

func (*Algorithm_Mac_Truncated) Reset

func (x *Algorithm_Mac_Truncated) Reset()

func (*Algorithm_Mac_Truncated) String

func (x *Algorithm_Mac_Truncated) String() string

type Algorithm_Mac_Truncated_

type Algorithm_Mac_Truncated_ struct {
	Truncated *Algorithm_Mac_Truncated `protobuf:"bytes,2,opt,name=truncated,proto3,oneof"`
}

type Algorithm_None

type Algorithm_None struct {
	// contains filtered or unexported fields
}

func (*Algorithm_None) Descriptor deprecated

func (*Algorithm_None) Descriptor() ([]byte, []int)

Deprecated: Use Algorithm_None.ProtoReflect.Descriptor instead.

func (*Algorithm_None) ProtoMessage

func (*Algorithm_None) ProtoMessage()

func (*Algorithm_None) ProtoReflect

func (x *Algorithm_None) ProtoReflect() protoreflect.Message

func (*Algorithm_None) Reset

func (x *Algorithm_None) Reset()

func (*Algorithm_None) String

func (x *Algorithm_None) String() string

type Algorithm_None_

type Algorithm_None_ struct {
	None *Algorithm_None `protobuf:"bytes,1,opt,name=none,proto3,oneof"`
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL