Documentation ¶
Overview ¶
Package suites allows callers to look up Kyber suites by name.
Currently, only the "ed25519" suite is available with a constant time implementation and the other ones use variable time algorithms.
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ErrUnknownSuite = errors.New("unknown suite")
ErrUnknownSuite indicates that the suite was not one of the registered suites.
Functions ¶
func RequireConstantTime ¶
func RequireConstantTime()
RequireConstantTime causes all future calls to Find and MustFind to only search for suites where the implementation is constant time. It should be called in an init() function for the main package of users of Kyber who need to be sure to avoid variable time implementations. Once constant time implementations are required, there is no way to turn it back off (by design).
At this time, the only constant time crypto suite is "Ed25519".