summaryrefslogtreecommitdiff
path: root/keys.h
diff options
context:
space:
mode:
authorJoachim Wiedorn <ad_debian@joonet.de>2013-11-22 19:20:44 +0100
committerJoachim Wiedorn <ad_debian@joonet.de>2013-11-22 19:20:44 +0100
commitc98446b75a1624e5b8cebf601ac4ed6e516b5e26 (patch)
tree4aa50e9398e632b760f5fd91f0ae4d49f6d147a1 /keys.h
Imported Upstream version 1.26
Diffstat (limited to 'keys.h')
-rw-r--r--keys.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/keys.h b/keys.h
new file mode 100644
index 0000000..3de80ce
--- /dev/null
+++ b/keys.h
@@ -0,0 +1,40 @@
+/*
+ chronyd/chronyc - Programs for keeping computer clocks accurate.
+
+ **********************************************************************
+ * Copyright (C) Richard P. Curnow 1997-2002
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of version 2 of the GNU General Public License as
+ * published by the Free Software Foundation.
+ *
+ * This program 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
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
+ **********************************************************************
+
+ =======================================================================
+
+ Header for key management module
+ */
+
+#ifndef GOT_KEYS_H
+#define GOT_KEYS_H
+
+extern void KEY_Initialise(void);
+extern void KEY_Finalise(void);
+
+extern void KEY_Reload(void);
+
+extern void KEY_CommandKey(char **key, int *len);
+
+extern int KEY_GetKey(unsigned long key_id, char **key, int *len);
+extern int KEY_KeyKnown(unsigned long key_id);
+
+#endif /* GOT_KEYS_H */