Voice et bot modif

This commit is contained in:
pi 2026-06-16 17:09:34 +00:00
parent 189d56026b
commit 7333a22bcd
10774 changed files with 634644 additions and 933308 deletions

View file

@ -14,6 +14,27 @@
from nacl.bindings.crypto_aead import (
crypto_aead_aegis128l_ABYTES,
crypto_aead_aegis128l_KEYBYTES,
crypto_aead_aegis128l_MESSAGEBYTES_MAX,
crypto_aead_aegis128l_NPUBBYTES,
crypto_aead_aegis128l_NSECBYTES,
crypto_aead_aegis128l_decrypt,
crypto_aead_aegis128l_encrypt,
crypto_aead_aegis256_ABYTES,
crypto_aead_aegis256_KEYBYTES,
crypto_aead_aegis256_MESSAGEBYTES_MAX,
crypto_aead_aegis256_NPUBBYTES,
crypto_aead_aegis256_NSECBYTES,
crypto_aead_aegis256_decrypt,
crypto_aead_aegis256_encrypt,
crypto_aead_aes256gcm_ABYTES,
crypto_aead_aes256gcm_KEYBYTES,
crypto_aead_aes256gcm_MESSAGEBYTES_MAX,
crypto_aead_aes256gcm_NPUBBYTES,
crypto_aead_aes256gcm_NSECBYTES,
crypto_aead_aes256gcm_decrypt,
crypto_aead_aes256gcm_encrypt,
crypto_aead_chacha20poly1305_ABYTES,
crypto_aead_chacha20poly1305_KEYBYTES,
crypto_aead_chacha20poly1305_MESSAGEBYTES_MAX,
@ -48,9 +69,13 @@ from nacl.bindings.crypto_box import (
crypto_box_ZEROBYTES,
crypto_box_afternm,
crypto_box_beforenm,
crypto_box_easy,
crypto_box_easy_afternm,
crypto_box_keypair,
crypto_box_open,
crypto_box_open_afternm,
crypto_box_open_easy,
crypto_box_open_easy_afternm,
crypto_box_seal,
crypto_box_seal_open,
crypto_box_seed_keypair,
@ -60,6 +85,7 @@ from nacl.bindings.crypto_core import (
crypto_core_ed25519_NONREDUCEDSCALARBYTES,
crypto_core_ed25519_SCALARBYTES,
crypto_core_ed25519_add,
crypto_core_ed25519_from_uniform,
crypto_core_ed25519_is_valid_point,
crypto_core_ed25519_scalar_add,
crypto_core_ed25519_scalar_complement,
@ -181,12 +207,15 @@ from nacl.bindings.crypto_secretbox import (
crypto_secretbox_MESSAGEBYTES_MAX,
crypto_secretbox_NONCEBYTES,
crypto_secretbox_ZEROBYTES,
crypto_secretbox_easy,
crypto_secretbox_open,
crypto_secretbox_open_easy,
)
from nacl.bindings.crypto_secretstream import (
crypto_secretstream_xchacha20poly1305_ABYTES,
crypto_secretstream_xchacha20poly1305_HEADERBYTES,
crypto_secretstream_xchacha20poly1305_KEYBYTES,
crypto_secretstream_xchacha20poly1305_MESSAGEBYTES_MAX,
crypto_secretstream_xchacha20poly1305_STATEBYTES,
crypto_secretstream_xchacha20poly1305_TAG_FINAL,
crypto_secretstream_xchacha20poly1305_TAG_MESSAGE,
@ -243,6 +272,27 @@ from nacl.bindings.utils import (
__all__ = [
"crypto_aead_aegis128l_ABYTES",
"crypto_aead_aegis128l_KEYBYTES",
"crypto_aead_aegis128l_MESSAGEBYTES_MAX",
"crypto_aead_aegis128l_NPUBBYTES",
"crypto_aead_aegis128l_NSECBYTES",
"crypto_aead_aegis128l_decrypt",
"crypto_aead_aegis128l_encrypt",
"crypto_aead_aegis256_ABYTES",
"crypto_aead_aegis256_KEYBYTES",
"crypto_aead_aegis256_MESSAGEBYTES_MAX",
"crypto_aead_aegis256_NPUBBYTES",
"crypto_aead_aegis256_NSECBYTES",
"crypto_aead_aegis256_decrypt",
"crypto_aead_aegis256_encrypt",
"crypto_aead_aes256gcm_ABYTES",
"crypto_aead_aes256gcm_KEYBYTES",
"crypto_aead_aes256gcm_MESSAGEBYTES_MAX",
"crypto_aead_aes256gcm_NPUBBYTES",
"crypto_aead_aes256gcm_NSECBYTES",
"crypto_aead_aes256gcm_decrypt",
"crypto_aead_aes256gcm_encrypt",
"crypto_aead_chacha20poly1305_ABYTES",
"crypto_aead_chacha20poly1305_KEYBYTES",
"crypto_aead_chacha20poly1305_MESSAGEBYTES_MAX",
@ -278,6 +328,10 @@ __all__ = [
"crypto_box_beforenm",
"crypto_box_afternm",
"crypto_box_open_afternm",
"crypto_box_easy",
"crypto_box_easy_afternm",
"crypto_box_open_easy",
"crypto_box_open_easy_afternm",
"crypto_box_seal",
"crypto_box_seal_open",
"crypto_box_seed_keypair",
@ -342,10 +396,13 @@ __all__ = [
"crypto_secretbox_MACBYTES",
"crypto_secretbox_MESSAGEBYTES_MAX",
"crypto_secretbox",
"crypto_secretbox_easy",
"crypto_secretbox_open",
"crypto_secretbox_open_easy",
"crypto_secretstream_xchacha20poly1305_ABYTES",
"crypto_secretstream_xchacha20poly1305_HEADERBYTES",
"crypto_secretstream_xchacha20poly1305_KEYBYTES",
"crypto_secretstream_xchacha20poly1305_MESSAGEBYTES_MAX",
"crypto_secretstream_xchacha20poly1305_STATEBYTES",
"crypto_secretstream_xchacha20poly1305_TAG_FINAL",
"crypto_secretstream_xchacha20poly1305_TAG_MESSAGE",