TODO.txt 723 B

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