Browse Source

Fix typo

`xsalsa20_poly1305_suffx` -> `xsalsa20_poly1305_suffix`
pull/169/head
Matt Carey 5 years ago
committed by GitHub
parent
commit
be26aa63c3
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      disco/voice/udp.py

2
disco/voice/udp.py

@ -234,7 +234,7 @@ class UDPVoiceClient(LoggingClass):
if self.vc.mode == 'xsalsa20_poly1305_lite': if self.vc.mode == 'xsalsa20_poly1305_lite':
nonce[:4] = data[-4:] nonce[:4] = data[-4:]
data = data[:-4] data = data[:-4]
elif self.vc.mode == 'xsalsa20_poly1305_suffx': elif self.vc.mode == 'xsalsa20_poly1305_suffix':
nonce[:24] = data[-24:] nonce[:24] = data[-24:]
data = data[:-24] data = data[:-24]
elif self.vc.mode == 'xsalsa20_poly1305': elif self.vc.mode == 'xsalsa20_poly1305':

Loading…
Cancel
Save