Skip to content

Commit 1b17751

Browse files
authored
Fixed incorrect param name in pyi (#9391)
1 parent 387e509 commit 1b17751

File tree

1 file changed

+2
-2
lines changed
  • src/cryptography/hazmat/bindings/_rust/openssl

1 file changed

+2
-2
lines changed

src/cryptography/hazmat/bindings/_rust/openssl/aead.pyi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ class AESSIV:
1010
def generate_key(key_size: int) -> bytes: ...
1111
def encrypt(
1212
self,
13-
nonce: bytes,
13+
data: bytes,
1414
associated_data: typing.Optional[typing.List[bytes]],
1515
) -> bytes: ...
1616
def decrypt(
1717
self,
18-
nonce: bytes,
18+
data: bytes,
1919
associated_data: typing.Optional[typing.List[bytes]],
2020
) -> bytes: ...

0 commit comments

Comments
 (0)