()
| 22 | var sortedSupportedAEADs []uint16 |
| 23 | |
| 24 | func init() { |
| 25 | for aeadID := range hpke.SupportedAEADs { |
| 26 | sortedSupportedAEADs = append(sortedSupportedAEADs, aeadID) |
| 27 | } |
| 28 | slices.Sort(sortedSupportedAEADs) |
| 29 | } |
| 30 | |
| 31 | type EchCipher struct { |
| 32 | KDFID uint16 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…