/************************************************* * PEM Encoding/Decoding Header File * * (C) 1999-2006 The Botan Project * *************************************************/ #ifndef BOTAN_PEM_H__ #define BOTAN_PEM_H__ #include namespace Botan { namespace PEM_Code { /************************************************* * PEM Encoding/Decoding * *************************************************/ std::string encode(const byte[], u32bit, const std::string&); std::string encode(const MemoryRegion&, const std::string&); SecureVector decode(DataSource&, std::string&); SecureVector decode_check_label(DataSource&, const std::string&); bool matches(DataSource&, const std::string& = ""); } } #endif