X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=vbig.git;a=blobdiff_plain;f=Arcfour.cc;h=49c8590495d282cd88f4be7b47f094996ff544a1;hp=bee5cf1eeaf06bd5b154b453c7ebeabcb99562f9;hb=9b65d43d40c9f3c85634b22c6626199736cd5afb;hpb=a95ee1fb4e7ea9e75c131c07bdbfcfc0cee1b76e diff --git a/Arcfour.cc b/Arcfour.cc index bee5cf1..49c8590 100644 --- a/Arcfour.cc +++ b/Arcfour.cc @@ -21,15 +21,6 @@ #include #include "Arcfour.h" -/** @brief Encrypt using Arcfour stream cipher - * @param context Context structure - * @param inbuf Input buffer - * @param outbuf Output buffer - * @param length Number of bytes in @p inbuf - * - * Copies from @p inbuf to @p outbuf, encrypting (or decrypting) using - * the stream controlled by @p context. - */ void Arcfour::stream(char *outbuf, size_t length) { uint8_t i = idx_i; uint8_t j = idx_j;