Skip to content
This repository has been archived by the owner on Jun 11, 2023. It is now read-only.

Commit

Permalink
Support ChaCha20
Browse files Browse the repository at this point in the history
  • Loading branch information
xymy committed Mar 18, 2020
1 parent 959e49a commit 4178543
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/xycrypto/ciphers/_stream.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,8 @@
class ARC4(_base.StreamCipher):
_algorithm = _lib.ARC4
name = 'ARC4'


class ChaCha20(_base.StreamCipher):
_algorithm = _lib.ChaCha20
name = 'ChaCha20'

0 comments on commit 4178543

Please sign in to comment.