$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [boost] [encrypted strings]
From: Kasra (kasra_n500_at_[hidden])
Date: 2009-04-27 12:34:15
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