strongswan.org
Wiki/Project Management
Downloads
Gitweb
projects
/
strongswan.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
support of ECDSA signatures for all certificate types
[strongswan.git]
/
src
/
libstrongswan
/
plugins
/
x509
/
x509_ocsp_response.c
diff --git
a/src/libstrongswan/plugins/x509/x509_ocsp_response.c
b/src/libstrongswan/plugins/x509/x509_ocsp_response.c
index
3c28ba0
..
3fd293d
100644
(file)
--- a/
src/libstrongswan/plugins/x509/x509_ocsp_response.c
+++ b/
src/libstrongswan/plugins/x509/x509_ocsp_response.c
@@
-745,6
+745,9
@@
static bool issued_by(private_x509_ocsp_response_t *this, certificate_t *issuer)
case OID_SHA512_WITH_RSA:
scheme = SIGN_RSA_EMSA_PKCS1_SHA512;
break;
case OID_SHA512_WITH_RSA:
scheme = SIGN_RSA_EMSA_PKCS1_SHA512;
break;
+ case OID_ECDSA_WITH_SHA1:
+ scheme = SIGN_ECDSA_WITH_SHA1;
+ break;
default:
return FALSE;
}
default:
return FALSE;
}