Fix typo in camellia algorithm name (#4847)

This commit is contained in:
Adam Kliś
2020-12-22 15:04:44 +01:00
committed by GitHub
parent 55ebc0b673
commit f27d7dea07

View File

@@ -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: ...