1
0
mirror of https://github.com/biergaizi/codecrypt synced 2024-06-28 18:03:36 +00:00

remove some uninteresting comments

This commit is contained in:
Mirek Kratochvil 2013-04-15 15:59:45 +02:00
parent b3403d5c41
commit 5d4879a760
2 changed files with 1 additions and 2 deletions

@ -314,7 +314,6 @@ int fmtseq::generate (pubkey&pub, privkey&priv,
* - h*l hashes of verification chain, from bottom to top, h*l times hash size
* - i (so that we can guess left/right concatenation before hashing) stored as
* H-bit number in little endian.
* TODO Why cannot the tree be just XORed together? would be WAY simpler!
*
* summed up:
*

@ -63,7 +63,7 @@ void matrix::compute_transpose (matrix&r)
void matrix::mult (const matrix&right)
{
//trivial multiply. TODO strassen algo for larger matrices.
//trivial multiply
matrix leftT;
compute_transpose (leftT);
uint w = right.width(), h = leftT.width(), i, j;