Home | History | Annotate | Download | only in kcp

Lines Matching refs:rate

28   * In all these functions, the rate and capacity must sum to the width of the
37 * It gathers the state processed by the permutation as well as the rate,
44 * @param rate The value of the rate r.
63 * and the rate a multiple of 8 bits (one byte) in this implementation.
67 int Prefix_Sponge(unsigned int rate, unsigned int capacity, const unsigned char *input, size_t inputByteLen, unsigned char suffix, unsigned char *output, size_t outputByteLen);
73 * @param rate The value of the rate r.
76 * and the rate a multiple of 8 bits (one byte) in this implementation.
79 int Prefix_SpongeInitialize(Prefix_SpongeInstance *spongeInstance, unsigned int rate, unsigned int capacity);
136 unsigned int rate; \
142 int prefix##_Sponge(unsigned int rate, unsigned int capacity, const unsigned char *input, size_t inputByteLen, unsigned char suffix, unsigned char *output, size_t outputByteLen); \
143 int prefix##_SpongeInitialize(prefix##_SpongeInstance *spongeInstance, unsigned int rate, unsigned int capacity); \