go.mod: switch to upstream golang.org/x/crypto

Fixes #99
This commit is contained in:
Filippo Valsorda
2020-02-04 14:14:08 -05:00
parent a798d4ef31
commit 9fdb125641
4 changed files with 7 additions and 7 deletions

View File

@@ -74,7 +74,7 @@ func (r *Reader) Read(p []byte) (int, error) {
return n, nil
}
// readChunk reads the next chunk of ciphertext from r.c and makes in available
// readChunk reads the next chunk of ciphertext from r.c and makes it available
// in r.unread. last is true if the chunk was marked as the end of the message.
// readChunk must not be called again after returning a last chunk or an error.
func (r *Reader) readChunk() (last bool, err error) {