summaryrefslogtreecommitdiff
path: root/ruby_1_8_5/ext/openssl/ossl_digest.h
diff options
context:
space:
mode:
Diffstat (limited to 'ruby_1_8_5/ext/openssl/ossl_digest.h')
-rw-r--r--ruby_1_8_5/ext/openssl/ossl_digest.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/ruby_1_8_5/ext/openssl/ossl_digest.h b/ruby_1_8_5/ext/openssl/ossl_digest.h
new file mode 100644
index 0000000000..b35bd217b3
--- /dev/null
+++ b/ruby_1_8_5/ext/openssl/ossl_digest.h
@@ -0,0 +1,23 @@
+/*
+ * $Id: ossl_digest.h,v 1.2 2003/09/05 09:08:40 gotoyuzo Exp $
+ * 'OpenSSL for Ruby' project
+ * Copyright (C) 2001-2002 Michal Rokos <m.rokos@sh.cvut.cz>
+ * All rights reserved.
+ */
+/*
+ * This program is licenced under the same licence as Ruby.
+ * (See the file 'LICENCE'.)
+ */
+#if !defined(_OSSL_DIGEST_H_)
+#define _OSSL_DIGEST_H_
+
+extern VALUE mDigest;
+extern VALUE cDigest;
+extern VALUE eDigestError;
+
+const EVP_MD *GetDigestPtr(VALUE);
+VALUE ossl_digest_new(const EVP_MD *);
+void Init_ossl_digest(void);
+
+#endif /* _OSSL_DIGEST_H_ */
+