Commit 38d81d1
refactor: remove unused buffer module from rustcrypto platform
The buffer module provided FixedPlainText and FixedCipherText wrapper types
but was not used by the current AES-CTR cipher implementation, which uses
simple [u8; 256] arrays directly. Removing it simplifies the crate and
follows YAGNI principles.
- Remove buffer module declaration from lib.rs
- Remove buffer type re-exports (BufferError, FixedCipherText, etc.)
- Delete unused buffer.rs file
All cipher tests continue to pass with this simplification.1 parent d9fb1f7 commit 38d81d1
1 file changed
+0
-4
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
10 | 10 | | |
11 | 11 | | |
12 | 12 | | |
13 | | - | |
14 | 13 | | |
15 | 14 | | |
16 | 15 | | |
17 | 16 | | |
18 | | - | |
19 | | - | |
20 | | - | |
21 | 17 | | |
22 | 18 | | |
0 commit comments