aboutsummaryrefslogtreecommitdiffstats
path: root/include/pem.h
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-09-28 22:50:07 +0000
committerlloyd <[email protected]>2008-09-28 22:50:07 +0000
commit0fbff7a11ebea1609eae50d0709e3f08dab98838 (patch)
tree08a043817bbfb3d24eee1e8f3ba32757bf1411b2 /include/pem.h
parent34aa16d924dd350611bfd77c0ac790c0b80b98fb (diff)
PEM codec module
Diffstat (limited to 'include/pem.h')
-rw-r--r--include/pem.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/include/pem.h b/include/pem.h
deleted file mode 100644
index e9f14ddc2..000000000
--- a/include/pem.h
+++ /dev/null
@@ -1,33 +0,0 @@
-/*************************************************
-* PEM Encoding/Decoding Header File *
-* (C) 1999-2007 Jack Lloyd *
-*************************************************/
-
-#ifndef BOTAN_PEM_H__
-#define BOTAN_PEM_H__
-
-#include <botan/data_src.h>
-
-namespace Botan {
-
-namespace PEM_Code {
-
-/*************************************************
-* PEM Encoding/Decoding *
-*************************************************/
-BOTAN_DLL std::string encode(const byte[], u32bit,
- const std::string&, u32bit = 64);
-BOTAN_DLL std::string encode(const MemoryRegion<byte>&,
- const std::string&, u32bit = 64);
-
-BOTAN_DLL SecureVector<byte> decode(DataSource&, std::string&);
-BOTAN_DLL SecureVector<byte> decode_check_label(DataSource&,
- const std::string&);
-BOTAN_DLL bool matches(DataSource&, const std::string& = "",
- u32bit search_range = 4096);
-
-}
-
-}
-
-#endif