mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-04 21:57:44 +03:00
No cookie for @aead :)
This commit is contained in:
parent
8d20cd7550
commit
e6ccf7f3c0
1 changed files with 2 additions and 1 deletions
3
vendor/github.com/aead/chacha20/chacha/chacha_386.go
generated
vendored
3
vendor/github.com/aead/chacha20/chacha/chacha_386.go
generated
vendored
|
@ -52,7 +52,8 @@ func hChaCha20(out *[32]byte, nonce *[16]byte, key *[32]byte) {
|
|||
}
|
||||
|
||||
func xorKeyStream(dst, src []byte, block, state *[64]byte, rounds int) int {
|
||||
if useSSE2 {
|
||||
switch {
|
||||
case useSSE2:
|
||||
return xorKeyStreamSSE2(dst, src, block, state, rounds)
|
||||
default:
|
||||
return xorKeyStreamGeneric(dst, src, block, state, rounds)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue