golang / go

The Go programming language
https://go.dev
BSD 3-Clause "New" or "Revised" License
123.75k stars 17.64k forks source link

crypto/cipher: It should support another interface for CTR mode #26673

Open binkoni opened 6 years ago

binkoni commented 6 years ago

What did you do?

I want to write code that can efficiently encrypt or decrypt a portion of large files using random access I/O. Theoretically in CTR mode it is possible to encrypt/decrypt arbitrary block independently. But with the lack of alternative interface to Stream interface, there is no way to take advantage of CTR mode.

What did you expect to see?

Another interface for CTR mode, or maybe custom counter support would be good too.

What did you see instead?

Only Stream interface exists.

ianlancetaylor commented 6 years ago

CC @FiloSottile

gopherbot commented 1 day ago

Change https://go.dev/cl/621958 mentions this issue: crypto/aes: speedup CTR mode on AMD64 and ARM64