aboutsummaryrefslogtreecommitdiffstats
path: root/ossl_pkey.h
diff options
context:
space:
mode:
authorMichal Rokos <m.rokos@sh.cvut.cz>2001-11-16 11:20:13 +0000
committerMichal Rokos <m.rokos@sh.cvut.cz>2001-11-16 11:20:13 +0000
commit8903e757c052d3a99aada758bb628ec135360e60 (patch)
tree5f0e99803c1fc5c6909fd7d325d0f279265b97cf /ossl_pkey.h
downloadruby-openssl-history-8903e757c052d3a99aada758bb628ec135360e60.tar.gz
Initial revision
Diffstat (limited to 'ossl_pkey.h')
-rw-r--r--ossl_pkey.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/ossl_pkey.h b/ossl_pkey.h
new file mode 100644
index 0000000..ab0895f
--- /dev/null
+++ b/ossl_pkey.h
@@ -0,0 +1,22 @@
+/*
+ * $Id$
+ * 'OpenSSL for Ruby' project
+ * Copyright (C) 2001 Michal Rokos <m.rokos@sh.cvut.cz>
+ * All rights reserved.
+ */
+/*
+ * This program is licenced under the same licence as Ruby.
+ * (See the file 'LICENCE'.)
+ */
+#ifndef _OSSL_PKEY_H_
+#define _OSSL_PKEY_H_
+
+/*
+ * Struct
+ */
+typedef struct ossl_pkey_st {
+ EVP_PKEY *(*get_EVP_PKEY)(VALUE);
+} ossl_pkey;
+
+#endif
+