Type in kdf.go

This commit is contained in:
Tom Ritter 2016-02-08 14:39:46 -06:00
parent e5952a1c28
commit 8901c0b67d
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ func CounterMode(prf PRF, prfLen uint32, key []byte, context []byte, bits uint32
// Update the counter in the input string
binary.BigEndian.PutUint32(input[:4], i)
// Compute a more key material
// Compute more key material
part, err := prf(key, input)
if err != nil {
return nil, err