From f27d7dea072282699324cdc9c294c14567527592 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20Kli=C5=9B?= Date: Tue, 22 Dec 2020 15:04:44 +0100 Subject: [PATCH] Fix typo in camellia algorithm name (#4847) --- .../2and3/cryptography/hazmat/primitives/ciphers/algorithms.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/third_party/2and3/cryptography/hazmat/primitives/ciphers/algorithms.pyi b/third_party/2and3/cryptography/hazmat/primitives/ciphers/algorithms.pyi index 2384380f2..78e44b2c3 100644 --- a/third_party/2and3/cryptography/hazmat/primitives/ciphers/algorithms.pyi +++ b/third_party/2and3/cryptography/hazmat/primitives/ciphers/algorithms.pyi @@ -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: ...