| -----Original Message-----
| From: Julia Smith [mailto:[EMAIL PROTECTED]
| Sent: Friday, March 21, 2003 2:47 PM
| To: [EMAIL PROTECTED]
| Subject: RE: AES Key generation/ AES use
| 
| 
| Dumb question: are there set lengths to use? What's a good 
| minimum? I really spent more time looking into RSA keys. AES 
| is not so well known to me.
| 
Hi Julia,

See Question 18 at http://csrc.nist.gov/CryptoToolkit/aes/aesfact.html

Also, Wei provides it in the library:

/// seckey.h
/// support query of variable key length, template parameters are
///   default, min, max, multiple (default multiple 1)
template <unsigned int D, unsigned int N, unsigned int M, unsigned int Q =
1,
          unsigned int IV_REQ = SimpleKeyingInterface::NOT_RESYNCHRONIZABLE>
class VariableKeyLength {
...

and

/// rijndael.h
struct Rijndael_Info : public FixedBlockSize<16>, public
VariableKeyLength<16, 16, 32, 8>
{
        static const char *StaticAlgorithmName() {return "Rijndael";}
};

Jeff

Reply via email to