summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorAleksey Sanin <aleksey@src.gnome.org>2003-04-03 06:46:30 +0000
committerAleksey Sanin <aleksey@src.gnome.org>2003-04-03 06:46:30 +0000
commit68b4d86175a7cce276d3c5e3e9954f9fd5a9e858 (patch)
tree6b6f3ae2167d7d4ad7f5bf5df09fc73d933aa9a4 /apps
parenta12aaa3b71fd9d432869d2b72b5b97ff555ea814 (diff)
downloadxmlsec1-68b4d86175a7cce276d3c5e3e9954f9fd5a9e858.tar.gz
xmlsec1-68b4d86175a7cce276d3c5e3e9954f9fd5a9e858.tar.bz2
xmlsec1-68b4d86175a7cce276d3c5e3e9954f9fd5a9e858.zip
fixed some crypto api
Diffstat (limited to 'apps')
-rw-r--r--apps/crypto.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/crypto.c b/apps/crypto.c
index 55a7bb45..3512a08c 100644
--- a/apps/crypto.c
+++ b/apps/crypto.c
@@ -111,7 +111,7 @@ xmlSecAppCryptoSimpleKeysMngrPemKeyAndCertsLoad(xmlSecKeysMngrPtr mngr,
xmlSecAssert2(files != NULL, -1);
/* first is the key file */
- key = xmlSecCryptoAppPemKeyLoad(files, pwd, NULL);
+ key = xmlSecCryptoAppPemKeyLoad(files, pwd, NULL, NULL);
if(key == NULL) {
xmlSecError(XMLSEC_ERRORS_HERE,
NULL,
@@ -202,7 +202,7 @@ xmlSecAppCryptoSimpleKeysMngrPkcs12KeyLoad(xmlSecKeysMngrPtr mngr, const char *f
pwd = buf;
}
- key = xmlSecCryptoAppPkcs12Load(filename, pwd);
+ key = xmlSecCryptoAppPkcs12Load(filename, pwd, NULL, NULL);
if(key == NULL) {
xmlSecError(XMLSEC_ERRORS_HERE,
NULL,