/*Implementation by Seth Hoffert, hereby denoted as "the implementer".For more information, feedback or questions, please refer to our websites:https://keccak.team/xoodoo.htmlTo the extent possible under law, the implementer has waived all copyrightand related or neighboring rights to the source code in this file.http://creativecommons.org/publicdomain/zero/1.0/*/#include "Xoodyak.h"/* Xoodyak instantiation parameters */namespaceXoodyakParams{IterableTransformation<Xoodoo>f(384,12);unsignedintparam_Rhash=16;unsignedintparam_Rkin=44;unsignedintparam_Rkout=24;unsignedintparam_lratchet=16;};/* Xoodyak */Xoodyak::Xoodyak(constBitString&K,constBitString&id,constBitString&counter):Cyclist(XoodyakParams::f,XoodyakParams::param_Rhash,XoodyakParams::param_Rkin,XoodyakParams::param_Rkout,XoodyakParams::param_lratchet,K,id,counter){}