Bugzilla – Attachment 1835 Details for
Bug 1736
OpenSSH doesn't seem to work with my MuscleCard PKCS#11 library
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
don't add attribut 'sign=true' when looking up the private rsa key
x (text/plain), 644 bytes, created by
Markus Friedl
on 2010-04-09 17:13:24 AEST
(
hide
)
Description:
don't add attribut 'sign=true' when looking up the private rsa key
Filename:
MIME Type:
Creator:
Markus Friedl
Created:
2010-04-09 17:13:24 AEST
Size:
644 bytes
patch
obsolete
>--- ssh-pkcs11.c 2010/04/08 20:37:30 1.1 >+++ ssh-pkcs11.c 2010/04/09 08:09:34 >@@ -200,7 +200,9 @@ > CK_ATTRIBUTE key_filter[] = { > {CKA_CLASS, &private_key_class, sizeof(private_key_class) }, > {CKA_ID, NULL, 0}, >+#if 0 > {CKA_SIGN, &true, sizeof(true) } >+#endif > }; > char *pin, prompt[1024]; > int rval = -1; >@@ -236,7 +238,7 @@ > } > key_filter[1].pValue = k11->keyid; > key_filter[1].ulValueLen = k11->keyid_len; >- if ((rv = f->C_FindObjectsInit(si->session, key_filter, 3)) != CKR_OK) { >+ if ((rv = f->C_FindObjectsInit(si->session, key_filter, 2)) != CKR_OK) { > error("C_FindObjectsInit failed: %lu", rv); > return (-1); > }
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 1736
:
1812
|
1813
|
1814
|
1829
|
1835
|
1836
|
1837