update the label used for the key update derivation

This commit is contained in:
Marten Seemann 2019-11-06 12:40:47 +07:00
parent c5b76e4f86
commit d6add122d8

View file

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