Re: [boost] [encrypted strings]

Hi, I am working on a Crypto library for that could do compile time encryption/decryption, however, requires 'constexpr' support from the compiler: template<class T> constexpr void encrypt(T& cipher_text, const T& plain_text) const throw(bad_state); template<class T> constexpr void decrypt(T& cipher_text, const T& plain_text) const throw(bad_state); -- Kasra

Hi,
I am working on a Crypto library for that could do compile time encryption/decryption, however, requires 'constexpr' support from the compiler:
template<class T> constexpr void encrypt(T& cipher_text, const T& plain_text) const throw(bad_state);
template<class T> constexpr void decrypt(T& cipher_text, const T& plain_text) const throw(bad_state);
-- Kasra
This sounds very cool. Let me know when you're done. I would definitely use it. -Sid Sacek
participants (2)
-
Kasra
-
Sid Sacek