/*!
Module containing the variants of ChaCha (awfully descriptive, I know).
*/pubenumVariants{/// Original variant proposed by the author of the salsa
/// and chacha algorithms: Daniel J. Bernstein.
Djb,/// Alternative variation specified by the IETF, most often
/// used in conjunction with Poly1305.
Ietf,}pubtraitVariant{constVAR: Variants;}pubstructDjb;implVariant forDjb{constVAR: Variants =Variants::Djb;}pubstructIetf;implVariant forIetf{constVAR: Variants =Variants::Ietf;}