Update package comments

This commit is contained in:
Russtopia 2018-12-08 20:24:57 -08:00
parent da3a531e53
commit 852143b226
1 changed files with 5 additions and 2 deletions

View File

@ -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"