Skip to content

Commit

Permalink
Corrected sample code
Browse files Browse the repository at this point in the history
  • Loading branch information
mwhouser committed May 20, 2013
1 parent ead23fc commit adab9e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Skip32 C# implementation.
Adaptation of the skip32 C implementation:
http://www.qualcomm.com.au/PublicationsDocs/skip32.c

Heavily influenced by the php adaptation
Heavily influenced by the php adaptation:
https://github.com/nlenepveu/Skip32

## Get It on NuGet!
Expand All @@ -24,7 +24,7 @@ https://github.com/nlenepveu/Skip32

## Sample Code

Eleven41.Skip32Cipher skip32 = new Eleven41.Skip32Cipher(myKey);
Eleven41.Skip32.Skip32Cipher skip32 = new Eleven41.Skip32.Skip32Cipher(myKey);
int encrypted42 = skip32.Encrypt(42);
int plain42 = skip32.Decrypt(encrypted42);
System.Diagnostic.Debug.Assert(plain42 == 42);
Expand Down

0 comments on commit adab9e5

Please sign in to comment.