зеркало из
https://github.com/henrydcase/nobs.git
synced 2024-11-22 15:18:57 +00:00
SHA-3: speedups (#47)
* add function for one-off calculation * sha3: simplifies Read function * sha3: remove if from Read
Этот коммит содержится в:
родитель
45bc1a75f6
Коммит
8474981cfc
@ -157,44 +157,36 @@ func (c *state) Read(out []byte) (nread int, err error) {
|
||||
rate := c.BlockSize()
|
||||
nread = len(out)
|
||||
|
||||
// finalize if not done yet
|
||||
if !c.isSquezing {
|
||||
c.finalize_sha3()
|
||||
}
|
||||
|
||||
// Copy-out bytes that are still kept in the buffer
|
||||
if c.idx != 0 {
|
||||
l := min(c.idx, len(out))
|
||||
idx := rate - c.idx
|
||||
copy(out, buf[idx:idx+l])
|
||||
out = out[l:]
|
||||
c.idx -= l
|
||||
}
|
||||
l := min(c.idx, len(out))
|
||||
copy(out, buf[rate-c.idx:rate-c.idx+l])
|
||||
out = out[l:]
|
||||
c.idx -= l
|
||||
|
||||
l := len(out)
|
||||
if l == 0 {
|
||||
if len(out) == 0 {
|
||||
// nothing else todo
|
||||
return nread, nil
|
||||
}
|
||||
|
||||
// copy out full blocks and squeeze. at this point
|
||||
// there is no more data in the buffer.
|
||||
nblocks := l / rate
|
||||
for i := 0; i < nblocks; i++ {
|
||||
nblocks := len(out) / rate
|
||||
for nblocks > 0 {
|
||||
keccakF1600(&c.a)
|
||||
copyOut(c, out[:rate])
|
||||
out = out[rate:]
|
||||
}
|
||||
|
||||
// produce more if needed
|
||||
l = len(out)
|
||||
if l == 0 {
|
||||
return nread, nil
|
||||
nblocks--
|
||||
}
|
||||
|
||||
keccakF1600(&c.a)
|
||||
copyOut(c, buf)
|
||||
copy(out, buf[:l])
|
||||
c.idx = rate - l
|
||||
copy(out, buf[:len(out)])
|
||||
c.idx = rate - len(out)
|
||||
return nread, nil
|
||||
}
|
||||
|
||||
|
Загрузка…
Ссылка в новой задаче
Block a user