chore: checkpoint before Python removal

This commit is contained in:
2026-03-26 22:33:59 +00:00
parent 683cec9307
commit e568ddf82a
29972 changed files with 11269302 additions and 2 deletions

Binary file not shown.

Binary file not shown.

12
vendor/ctr/tests/ctr128/mod.rs vendored Normal file
View File

@@ -0,0 +1,12 @@
use aes::{Aes128, Aes256};
use ctr::{flavors, Ctr128BE, CtrCore};
cipher::stream_cipher_test!(aes128_ctr_core, "aes128-ctr", Ctr128BE<Aes128>);
cipher::stream_cipher_test!(aes256_ctr_core, "aes256-ctr", Ctr128BE<Aes256>);
cipher::stream_cipher_seek_test!(aes128_ctr_seek, Ctr128BE<Aes128>);
cipher::stream_cipher_seek_test!(aes256_ctr_seek, Ctr128BE<Aes256>);
cipher::iv_state_test!(
aes128_ctr_iv_state,
CtrCore<Aes128, flavors::Ctr128BE>,
apply_ks,
);