1234567891011121314151617181920 |
- Write more tests which exercise the creation, writing and reading of blocks, including those
- persisted to the filesystem.
- Fix BufSectored so it doesn't have to write to the first sector every flush.
- Track position and dirty-ness in Trailered.
- Implement a stream which is both Read and Write and which can transparently compress and decompress
- data written to and read from it.
- Remove TryCompose?
- Move crypto::{encrypt, decrypt} into corresponding {EncrypterExt, DecrypterExt}.
- Create an enum to eliminate the use of Block trait objects?
- Add a ser_sign_into method to SignerExt which serializes a value into a provided Vec<u8> and returns
- a signature over this data.
- Convert all sector sizes to u64 for portability.
|