summaryrefslogtreecommitdiff
path: root/Cryptlib/OpenSSL/crypto/ocsp
diff options
context:
space:
mode:
authorGary Ching-Pang Lin <glin@suse.com>2014-08-19 12:15:00 +0800
committerPeter Jones <pjones@redhat.com>2014-08-19 14:20:23 -0400
commit21f96e586351fc8b535353f2dea7c784e931d14a (patch)
treec7028a2687dcc1ce83f2b3bfdf25d0a3f9af7aa1 /Cryptlib/OpenSSL/crypto/ocsp
parentfa525bc4632e04346fae82a98ce23b31c6cfc86d (diff)
downloadefi-boot-shim-21f96e586351fc8b535353f2dea7c784e931d14a.tar.gz
efi-boot-shim-21f96e586351fc8b535353f2dea7c784e931d14a.zip
Update openssl to 0.9.8zb
Also update to Tiano Cryptlib r15802 and remove the execute mode bits from the C and header files of openssl
Diffstat (limited to 'Cryptlib/OpenSSL/crypto/ocsp')
-rw-r--r--[-rwxr-xr-x]Cryptlib/OpenSSL/crypto/ocsp/ocsp_asn.c0
-rw-r--r--[-rwxr-xr-x]Cryptlib/OpenSSL/crypto/ocsp/ocsp_cl.c0
-rw-r--r--[-rwxr-xr-x]Cryptlib/OpenSSL/crypto/ocsp/ocsp_err.c0
-rw-r--r--[-rwxr-xr-x]Cryptlib/OpenSSL/crypto/ocsp/ocsp_ext.c0
-rw-r--r--[-rwxr-xr-x]Cryptlib/OpenSSL/crypto/ocsp/ocsp_ht.c3
-rw-r--r--[-rwxr-xr-x]Cryptlib/OpenSSL/crypto/ocsp/ocsp_lib.c13
-rw-r--r--[-rwxr-xr-x]Cryptlib/OpenSSL/crypto/ocsp/ocsp_prn.c0
-rw-r--r--[-rwxr-xr-x]Cryptlib/OpenSSL/crypto/ocsp/ocsp_srv.c0
-rw-r--r--[-rwxr-xr-x]Cryptlib/OpenSSL/crypto/ocsp/ocsp_vfy.c0
9 files changed, 15 insertions, 1 deletions
diff --git a/Cryptlib/OpenSSL/crypto/ocsp/ocsp_asn.c b/Cryptlib/OpenSSL/crypto/ocsp/ocsp_asn.c
index bfe892ac..bfe892ac 100755..100644
--- a/Cryptlib/OpenSSL/crypto/ocsp/ocsp_asn.c
+++ b/Cryptlib/OpenSSL/crypto/ocsp/ocsp_asn.c
diff --git a/Cryptlib/OpenSSL/crypto/ocsp/ocsp_cl.c b/Cryptlib/OpenSSL/crypto/ocsp/ocsp_cl.c
index 17bab5fc..17bab5fc 100755..100644
--- a/Cryptlib/OpenSSL/crypto/ocsp/ocsp_cl.c
+++ b/Cryptlib/OpenSSL/crypto/ocsp/ocsp_cl.c
diff --git a/Cryptlib/OpenSSL/crypto/ocsp/ocsp_err.c b/Cryptlib/OpenSSL/crypto/ocsp/ocsp_err.c
index d2f2e79f..d2f2e79f 100755..100644
--- a/Cryptlib/OpenSSL/crypto/ocsp/ocsp_err.c
+++ b/Cryptlib/OpenSSL/crypto/ocsp/ocsp_err.c
diff --git a/Cryptlib/OpenSSL/crypto/ocsp/ocsp_ext.c b/Cryptlib/OpenSSL/crypto/ocsp/ocsp_ext.c
index 815cc29d..815cc29d 100755..100644
--- a/Cryptlib/OpenSSL/crypto/ocsp/ocsp_ext.c
+++ b/Cryptlib/OpenSSL/crypto/ocsp/ocsp_ext.c
diff --git a/Cryptlib/OpenSSL/crypto/ocsp/ocsp_ht.c b/Cryptlib/OpenSSL/crypto/ocsp/ocsp_ht.c
index 92aba08c..fb87cd76 100755..100644
--- a/Cryptlib/OpenSSL/crypto/ocsp/ocsp_ht.c
+++ b/Cryptlib/OpenSSL/crypto/ocsp/ocsp_ht.c
@@ -464,6 +464,9 @@ OCSP_RESPONSE *OCSP_sendreq_bio(BIO *b, char *path, OCSP_REQUEST *req)
ctx = OCSP_sendreq_new(b, path, req, -1);
+ if (!ctx)
+ return NULL;
+
do
{
rv = OCSP_sendreq_nbio(&resp, ctx);
diff --git a/Cryptlib/OpenSSL/crypto/ocsp/ocsp_lib.c b/Cryptlib/OpenSSL/crypto/ocsp/ocsp_lib.c
index 441ccb7a..5883b4e0 100755..100644
--- a/Cryptlib/OpenSSL/crypto/ocsp/ocsp_lib.c
+++ b/Cryptlib/OpenSSL/crypto/ocsp/ocsp_lib.c
@@ -220,8 +220,19 @@ int OCSP_parse_url(char *url, char **phost, char **pport, char **ppath, int *pss
if (!*ppath) goto mem_err;
+ p = host;
+ if(host[0] == '[')
+ {
+ /* ipv6 literal */
+ host++;
+ p = strchr(host, ']');
+ if(!p) goto parse_err;
+ *p = '\0';
+ p++;
+ }
+
/* Look for optional ':' for port number */
- if ((p = strchr(host, ':')))
+ if ((p = strchr(p, ':')))
{
*p = 0;
port = p + 1;
diff --git a/Cryptlib/OpenSSL/crypto/ocsp/ocsp_prn.c b/Cryptlib/OpenSSL/crypto/ocsp/ocsp_prn.c
index b8b7871d..b8b7871d 100755..100644
--- a/Cryptlib/OpenSSL/crypto/ocsp/ocsp_prn.c
+++ b/Cryptlib/OpenSSL/crypto/ocsp/ocsp_prn.c
diff --git a/Cryptlib/OpenSSL/crypto/ocsp/ocsp_srv.c b/Cryptlib/OpenSSL/crypto/ocsp/ocsp_srv.c
index 1c606dd0..1c606dd0 100755..100644
--- a/Cryptlib/OpenSSL/crypto/ocsp/ocsp_srv.c
+++ b/Cryptlib/OpenSSL/crypto/ocsp/ocsp_srv.c
diff --git a/Cryptlib/OpenSSL/crypto/ocsp/ocsp_vfy.c b/Cryptlib/OpenSSL/crypto/ocsp/ocsp_vfy.c
index f24080fa..f24080fa 100755..100644
--- a/Cryptlib/OpenSSL/crypto/ocsp/ocsp_vfy.c
+++ b/Cryptlib/OpenSSL/crypto/ocsp/ocsp_vfy.c