RC4 Implementation

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Boogie El Aceitoso

    RC4 Implementation

    Hi,

    Where can I find a sample implementation of the rc4 algorithm in standard c++?

    TIA
  • Peter van Merkerk

    #2
    Re: RC4 Implementation

    > Where can I find a sample implementation of the rc4 algorithm in
    standard c++?

    Google?



    Comment

    • Thomas Matthews

      #3
      Re: RC4 Implementation

      Boogie El Aceitoso wrote:
      [color=blue]
      > Hi,
      >
      > Where can I find a sample implementation of the rc4 algorithm in standard c++?
      >
      > TIA[/color]

      What is the RC4 algorithm?


      --
      Thomas Matthews

      C++ newsgroup welcome message:

      C++ Faq: http://www.parashift.com/c++-faq-lite
      C Faq: http://www.eskimo.com/~scs/c-faq/top.html
      alt.comp.lang.l earn.c-c++ faq:

      Other sites:
      http://www.josuttis.com -- C++ STL Library book

      Comment

      • Jerry Coffin

        #4
        Re: RC4 Implementation

        In article <bivnpu$d8ls6$1 @ID-133164.news.uni-berlin.de>,
        merkerk@deadspa m.com says...[color=blue][color=green]
        > > Where can I find a sample implementation of the rc4 algorithm in[/color]
        > standard c++?
        >
        > Google?[/color]

        A search for "ARC4 download" should get you a good start. In case you
        care, "ARC4" stands for "alleged RC4". RC4 was invented by Ron Rivest,
        and at least officially the algorithm is considered a trade secret, so
        unless you want to enter into a non-disclosure agreement with RSADSI,
        you're stuck using something that's merely alleged to be the same (then
        again, Ron Rivest's home page has a pointer to one ARC4 page).

        --
        Later,
        Jerry.

        The universe is a figment of its own imagination.

        Comment

        Working...