/************************************************* * PKCS #5 v1.5 PBE Header File * * (C) 1999-2007 Jack Lloyd * *************************************************/ #ifndef BOTAN_PBE_PKCS_V15_H__ #define BOTAN_PBE_PKCS_V15_H__ #include #include #include namespace Botan { /************************************************* * PKCS#5 v1.5 PBE * *************************************************/ class BOTAN_DLL PBE_PKCS5v15 : public PBE { public: void write(const byte[], u32bit); void start_msg(); void end_msg(); PBE_PKCS5v15(const std::string&, const std::string&, Cipher_Dir); private: void set_key(const std::string&); void new_params(RandomNumberGenerator& rng); MemoryVector encode_params() const; void decode_params(DataSource&); OID get_oid() const; void flush_pipe(bool); const Cipher_Dir direction; const std::string digest, cipher; SecureVector salt, key, iv; u32bit iterations; Pipe pipe; }; } #endif