Split the libary into multiple files, in general one per class.
[fides] / lib / publickey.h
diff --git a/lib/publickey.h b/lib/publickey.h
new file mode 100644 (file)
index 0000000..ad7993c
--- /dev/null
@@ -0,0 +1,47 @@
+/* fides.h - Light-weight, decentralised trust and authorisation management
+   Copyright (C) 2008-2009  Guus Sliepen <guus@tinc-vpn.org>
+  
+   Fides is free software; you can redistribute it and/or modify
+   it under the terms of the GNU Lesser General Public License as
+   published by the Free Software Foundation; either version 2.1 of
+   the License, or (at your option) any later version.
+  
+   Fides is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+   GNU Lesser General Public License for more details.
+  
+   You should have received a copy of the GNU Lesser General Public
+   License along with this program; if not, see <http://www.gnu.org/licenses/>.
+*/
+
+#ifndef __FIDES_PUBLICKEY_H__
+#define __FIDES_PUBLICKEY_H__
+
+#include <string>
+#include <iostream>
+#include <botan/botan.h>
+#include <botan/ecdsa.h>
+       
+namespace fides {
+       class publickey {
+               protected:
+               Botan::ECDSA_PublicKey *pub;
+
+               public:
+               publickey();
+               ~publickey();
+
+               int trust;
+               void load(std::istream &in);
+               void save(std::ostream &out) const;
+               void load(const std::string &filename);
+               void save(const std::string &filename) const;
+               bool verify(const std::string &data, const std::string &signature) const;
+               std::string to_string() const;
+               void from_string(const std::string &in);
+               std::string fingerprint(unsigned int bits = 64) const;
+       };
+}
+
+#endif