diff options
author | Anderson Toshiyuki Sasaki <ansasaki@redhat.com> | 2018-02-19 14:31:06 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2018-08-08 09:46:01 +0200 |
commit | 298d2565e2a2f06a859b7f5a1cc24ba7c87a8ce2 (patch) | |
tree | d6c7b12308a7d3617d6843297168c2e6a42d7578 /tests | |
parent | c892795ea3601a6d210a325b2ac566b1c30d3334 (diff) |
ssl: set engine implicitly when a PKCS#11 URI is provided
This allows the use of PKCS#11 URI for certificates and keys without
setting the corresponding type as "ENG" and the engine as "pkcs11"
explicitly. If a PKCS#11 URI is provided for certificate, key,
proxy_certificate or proxy_key, the corresponding type is set as "ENG"
if not provided and the engine is set to "pkcs11" if not provided.
Acked-by: Nikos Mavrogiannopoulos
Closes #2333
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit/unit1394.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/unit/unit1394.c b/tests/unit/unit1394.c index 667991d1e..010f052ec 100644 --- a/tests/unit/unit1394.c +++ b/tests/unit/unit1394.c @@ -56,6 +56,9 @@ UNITTEST_START "foo:bar\\\\", "foo", "bar\\\\", "foo:bar:", "foo", "bar:", "foo\\::bar\\:", "foo:", "bar\\:", + "pkcs11:foobar", "pkcs11:foobar", NULL, + "PKCS11:foobar", "PKCS11:foobar", NULL, + "PkCs11:foobar", "PkCs11:foobar", NULL, #ifdef WIN32 "c:\\foo:bar:baz", "c:\\foo", "bar:baz", "c:\\foo\\:bar:baz", "c:\\foo:bar", "baz", |