use the optimized HKDF-Expand-Label everywhere

This commit is contained in:
Marten Seemann 2020-04-09 08:33:59 +07:00
parent 10137b0c9b
commit 6bb11abcd7
2 changed files with 3 additions and 3 deletions

View file

@ -115,7 +115,7 @@ func (a *updatableAEAD) rollKeys(now time.Time) {
}
func (a *updatableAEAD) getNextTrafficSecret(hash crypto.Hash, ts []byte) []byte {
return qtls.HkdfExpandLabel(hash, ts, []byte{}, "quic ku", hash.Size())
return hkdfExpandLabel(hash, ts, []byte{}, "quic ku", hash.Size())
}
// For the client, this function is called before SetWriteKey.