aboutsummaryrefslogtreecommitdiffstats
path: root/ossl.h
diff options
context:
space:
mode:
Diffstat (limited to 'ossl.h')
-rw-r--r--ossl.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/ossl.h b/ossl.h
index f830ab4..948b274 100644
--- a/ossl.h
+++ b/ossl.h
@@ -88,12 +88,18 @@ extern VALUE eOSSLError;
} while (0)
/*
- * DATE conversion
+ * ASN1_DATE conversions
*/
VALUE asn1time_to_time(ASN1_TIME *);
time_t time_to_time_t(VALUE);
/*
+ * ASN1_INTEGER conversions
+ */
+VALUE asn1integer_to_num(ASN1_INTEGER *);
+ASN1_INTEGER *num_to_asn1integer(VALUE, ASN1_INTEGER *);
+
+/*
* String to HEXString conversion
*/
int string2hex(char *, int, char **, int *);