mirror of
https://gogs.blitter.com/RLabs/cryptmt
synced 2024-08-14 19:26:42 +00:00
Update package comments
This commit is contained in:
parent
da3a531e53
commit
852143b226
1 changed files with 5 additions and 2 deletions
|
@ -1,10 +1,13 @@
|
|||
// CryptMT
|
||||
// Package CryptMT - implementation of cryptMTv1 stream cipher
|
||||
// (but with mtwist64 as base accum)
|
||||
// https://eprint.iacr.org/2005/165.pdf
|
||||
package cryptmt
|
||||
|
||||
// TODO rlm: according to go docs, stream ciphers do not implement the
|
||||
// cipher.Block interface at all (thus do not support Encrypt() or
|
||||
// Decrypt() .. cipher.StreamReader/StreamWriter() only call
|
||||
// XORKeyStream() anyhow.
|
||||
// XORKeyStream() anyhow and for my own purposes this is all that is
|
||||
// required.
|
||||
|
||||
import (
|
||||
"errors"
|
||||
|
|
Loading…
Reference in a new issue