Browse Source
Fix typo
`xsalsa20_poly1305_suffx` -> `xsalsa20_poly1305_suffix`
pull/169/head
Matt Carey
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
disco/voice/udp.py
|
|
@ -234,7 +234,7 @@ class UDPVoiceClient(LoggingClass): |
|
|
|
if self.vc.mode == 'xsalsa20_poly1305_lite': |
|
|
|
nonce[:4] = data[-4:] |
|
|
|
data = data[:-4] |
|
|
|
elif self.vc.mode == 'xsalsa20_poly1305_suffx': |
|
|
|
elif self.vc.mode == 'xsalsa20_poly1305_suffix': |
|
|
|
nonce[:24] = data[-24:] |
|
|
|
data = data[:-24] |
|
|
|
elif self.vc.mode == 'xsalsa20_poly1305': |
|
|
|