Skip to content

Commit f27d7de

Browse files
authored
Fix typo in camellia algorithm name (#4847)
1 parent 55ebc0b commit f27d7de

File tree

1 file changed

+1
-1
lines changed
  • third_party/2and3/cryptography/hazmat/primitives/ciphers

1 file changed

+1
-1
lines changed

third_party/2and3/cryptography/hazmat/primitives/ciphers/algorithms.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class Blowfish(BlockCipherAlgorithm, CipherAlgorithm):
2626
name: str = ...
2727
key_sizes: FrozenSet[int] = ...
2828

29-
class Camelia(BlockCipherAlgorithm, CipherAlgorithm):
29+
class Camellia(BlockCipherAlgorithm, CipherAlgorithm):
3030
def __init__(self, key: bytes) -> None: ...
3131
@property
3232
def key_size(self) -> int: ...

0 commit comments

Comments
 (0)