From 852143b226c5f9997f57273e7574169f3d4a6024 Mon Sep 17 00:00:00 2001 From: Russtopia Date: Sat, 8 Dec 2018 20:24:57 -0800 Subject: [PATCH] Update package comments --- cryptmt.go | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/cryptmt.go b/cryptmt.go index d0c0d4d..6b3960f 100644 --- a/cryptmt.go +++ b/cryptmt.go @@ -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"