Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISC Open Source Projects
BIND
Commits
1f33a989
Commit
1f33a989
authored
Jan 17, 2018
by
Francis Dupont
Browse files
Applied #46125 fix (hardcoded "pkcs11")
parent
614d838a
Changes
1
Hide whitespace changes
Inline
Side-by-side
bin/dnssec/dnssec-keyfromlabel.c
View file @
1f33a989
...
...
@@ -609,8 +609,13 @@ main(int argc, char **argv) {
isc_buffer_init
(
&
buf
,
filename
,
sizeof
(
filename
)
-
1
);
/* associate the key */
ret
=
dst_key_fromlabel
(
name
,
alg
,
flags
,
protocol
,
rdclass
,
"pkcs11"
,
label
,
NULL
,
mctx
,
&
key
);
ret
=
dst_key_fromlabel
(
name
,
alg
,
flags
,
protocol
,
rdclass
,
#ifdef PKCS11CRYPTO
"pkcs11"
,
#else
engine
,
#endif
label
,
NULL
,
mctx
,
&
key
);
isc_entropy_stopcallbacksources
(
ectx
);
if
(
ret
!=
ISC_R_SUCCESS
)
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment