
Sent from my Verizon Wireless BlackBerry -----Original Message----- From: Kasra <kasra_n500@yahoo.com> Date: Thu, 19 Mar 2009 08:29:02 To: <boost@lists.boost.org> Subject: [boost] [gsoc][student] Proposal Hi, My proposal is to have a crypto library that provides high-level facilities. The library has different encapsulation layers. Within the low-level (internal) there are algorithms that share the same concept i.e. class block_cipher_type: + setkey(const void* key, size_type key_size) -> void; + encrypt(void* output, const void* input) -> const void; + decrypt(void* output, const void* input) -> const void; class stream_cipher_type: + create() -> void; + update(const void* input, size_type output) -> void; + update_final_block(const void* input, size_type output) -> void; and etc. Also entropy sources that use kernel specific entropies with addition of asynchronous generators. Finally a std:: iostream interface for cryptographically transformed streams. That use a transformer for the cryptographical transformation. Any interest??? -- Kasra _______________________________________________ Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost