Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
152 changes: 78 additions & 74 deletions pixi.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions pixi.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,11 @@ test-ml-dsa = "mojo run -I src/ tests/test_ml_dsa.mojo"
test-p256-ecdh = "mojo run -I src/ tests/test_wycheproof_p256_ecdh.mojo"
test-p384-ecdh = "mojo run -I src/ tests/test_wycheproof_p384_ecdh.mojo"
test-signing = "mojo run -I src/ tests/test_signing.mojo"
test-security-boundaries = "mojo run -I src/ tests/test_security_boundaries.mojo"
test-sha3-guard = "zsh tests/test_sha3_capacity_guard.sh"
bench = "mojo run -I src/ tests/benchmark.mojo"

[dependencies]
python = "3.12.*"
max = "==26.4.0"
mojo = ">=1.0.0b2,<2"
max = "==26.5.0"
mojo = "==1.0.0"
3 changes: 2 additions & 1 deletion src/thistle/__init__.mojo
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ from .pbkdf2 import hmac_sha256, hmac_sha384, hmac_sha512
from .pbkdf2 import pbkdf2_hmac_sha256, pbkdf2_hmac_sha512
from .argon2 import Argon2id, argon2id_hash_string

from .aes import AESKey, expand_key_128, expand_key_192, expand_key_256
from .aes import AESKey, AESExpandedKey, expand_key_128, expand_key_192, expand_key_256
# Compatibility exports for low-level kernels; callers must uphold pointer sizes.
from .aes_ni import has_aes_ni, aes_gcm_ctr_kernel, aes_gcm_encrypt, aes_gcm_decrypt, AESGCMContext
from .aes_gpu import aes_gpu_kernel_ecb, aes_gpu_kernel_ctr, aes_gpu_kernel_gcm_ctr
from .camellia import CamelliaCipher
Expand Down
Loading
Loading