Skip to content

Commit

Permalink
Fix typo in camellia algorithm name (#4847)
Browse files Browse the repository at this point in the history
  • Loading branch information
BonusPlay authored Dec 22, 2020
1 parent 55ebc0b commit f27d7de
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class Blowfish(BlockCipherAlgorithm, CipherAlgorithm):
name: str = ...
key_sizes: FrozenSet[int] = ...

class Camelia(BlockCipherAlgorithm, CipherAlgorithm):
class Camellia(BlockCipherAlgorithm, CipherAlgorithm):
def __init__(self, key: bytes) -> None: ...
@property
def key_size(self) -> int: ...
Expand Down

0 comments on commit f27d7de

Please sign in to comment.