Skip to content

Commit

Permalink
Correct a comment in Salsa20CryptoTransform.cs
Browse files Browse the repository at this point in the history
The comment referenced the 'ChaCha20' cipher. This is obviously the
Salsa20 cipher, not ChaCha20.
  • Loading branch information
Scott Bennett committed Mar 24, 2016
1 parent 0ff43f0 commit f7d5dce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Salsa20Cipher/Salsa20CryptoTransform.cs
Expand Up @@ -33,7 +33,7 @@ namespace Salsa20Cipher {
/// </summary>
public sealed class Salsa20CryptoTransform : ICryptoTransform {
/// <summary>
/// The ChaCha20 state (aka "context")
/// The Salsa20 state (aka "context")
/// </summary>
private uint[] state;

Expand Down

0 comments on commit f7d5dce

Please sign in to comment.