summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2000-02-18 00:54:21 +0000
committerDr. Stephen Henson <steve@openssl.org>2000-02-18 00:54:21 +0000
commit8a208cba97b0d08cfc6f07bb2f0e0d1f305a0b13 (patch)
tree6daa5b98977cc35fac41071a861e13f207ea16bf /util
parent5c2ec54f120270d1edc5ec7caa6384355a670355 (diff)
New functions and option to use NEW in certificate requests.
Diffstat (limited to 'util')
-rwxr-xr-xutil/libeay.num2
-rwxr-xr-xutil/mkdef.pl12
2 files changed, 14 insertions, 0 deletions
diff --git a/util/libeay.num b/util/libeay.num
index 90742171f3..e3a0f692c8 100755
--- a/util/libeay.num
+++ b/util/libeay.num
@@ -2222,3 +2222,5 @@ CRYPTO_dbg_get_options 2246
AUTHORITY_INFO_ACCESS_new 2247
CRYPTO_get_mem_debug_options 2248
des_crypt 2249
+PEM_write_bio_X509_REQ_NEW 2250
+PEM_write_X509_REQ_NEW 2251
diff --git a/util/mkdef.pl b/util/mkdef.pl
index d288b5687f..476cb150ad 100755
--- a/util/mkdef.pl
+++ b/util/mkdef.pl
@@ -301,6 +301,18 @@ sub do_defs
}
$funcs{"PEM_read_bio_${1}"} = 1;
$funcs{"PEM_write_bio_${1}"} = 1;
+ } elsif (/^DECLARE_PEM_write\s*\(\s*(\w*)\s*,/ ||
+ /^DECLARE_PEM_write_cb\s*\(\s*(\w*)\s*,/ ) {
+ if($W32) {
+ $funcs{"PEM_write_${1}"} = 1;
+ }
+ $funcs{"PEM_write_bio_${1}"} = 1;
+ } elsif (/^DECLARE_PEM_read\s*\(\s*(\w*)\s*,/ ||
+ /^DECLARE_PEM_read_cb\s*\(\s*(\w*)\s*,/ ) {
+ if($W32) {
+ $funcs{"PEM_read_${1}"} = 1;
+ }
+ $funcs{"PEM_read_bio_${1}"} = 1;
} elsif (
($tag{'TRUE'} != -1) &&
($tag{'FreeBSD'} != 1) &&