From 3c2c07a69daf75d377ba196c28524c0fc6a16db6 Mon Sep 17 00:00:00 2001 From: Rose Hogenson Date: Thu, 23 Oct 2025 21:02:22 -0700 Subject: Move sym files into the root directory --- encryptionalg_string.go | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 encryptionalg_string.go (limited to 'encryptionalg_string.go') diff --git a/encryptionalg_string.go b/encryptionalg_string.go new file mode 100644 index 0000000..b7384ee --- /dev/null +++ b/encryptionalg_string.go @@ -0,0 +1,25 @@ +// Code generated by "stringer -type=encryptionAlg -linecomment"; DO NOT EDIT. + +package sym + +import "strconv" + +func _() { + // An "invalid array index" compiler error signifies that the constant values have changed. + // Re-run the stringer command to generate them again. + var x [1]struct{} + _ = x[encryptionAlgInvalid-0] + _ = x[encryptionAlgAES256_GCM-1] +} + +const _encryptionAlg_name = "encryptionAlgInvalidAES-256-GCM" + +var _encryptionAlg_index = [...]uint8{0, 20, 31} + +func (i encryptionAlg) String() string { + idx := int(i) - 0 + if i < 0 || idx >= len(_encryptionAlg_index)-1 { + return "encryptionAlg(" + strconv.FormatInt(int64(i), 10) + ")" + } + return _encryptionAlg_name[_encryptionAlg_index[idx]:_encryptionAlg_index[idx+1]] +} -- cgit v1.3.1