hs-tls/TODO

35 lines
951 B
Text
Raw Normal View History

2010-09-09 21:47:19 +00:00
protocol:
- implement Certificate Verify / Certificate Request
- add Client Certificates
- process session as they should
- put 4 bytes of time in client/server random
- proper separation for key exchange algorithm (hardcoded to RSA at the moment in differents place)
- implements different key exchange algorithm
tls v1.2:
- implement finish digest generation with hmac256
- implement finish digest generation with client/server negociated algorithm
- proper version dispatch in marshalling packets
- properly separate different version of the protocol
- implement AEAD
code cleanup:
- remove show derivation on internal crypto state
- opaquify differents data type through newtype
security audit:
2010-09-26 16:04:28 +00:00
- add more unit tests for pure parts
2010-09-09 21:47:19 +00:00
- match security recommendation from the RFC
misc:
2010-12-06 22:54:18 +00:00
- investigate an iteratee/enumerator interface
2010-09-09 21:47:19 +00:00
- portability
- implement more ciphers
- check & optimize memory footprint
- compare & optimize performance