fix comment

This commit is contained in:
Caleb Doxsey 2023-05-02 10:03:27 -06:00
parent 365865a372
commit 82aa164bac

View file

@ -26,7 +26,7 @@ func IsEncryptedURLV1(values url.Values) bool {
return values.Has(paramSenderPublicKey) && values.Has(paramQuery)
}
// // IsEncryptedURLV2 returns true if the url.Values contains a V2 HPKE encrypted query.
// IsEncryptedURLV2 returns true if the url.Values contains a V2 HPKE encrypted query.
func IsEncryptedURLV2(values url.Values) bool {
return values.Has(paramSenderPublicKeyV2) && values.Has(paramQueryV2)
}