Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Arm Trusted Firmware
Commits
4d415c11
Commit
4d415c11
authored
Oct 09, 2017
by
davidcunado-arm
Committed by
GitHub
Oct 09, 2017
Browse files
Merge pull request #1121 from geesun/qx/cert_ecdsa_fix
cert_tool: Fix ECDSA certificates create failure
parents
d9066b42
1727de0e
Changes
1
Show whitespace changes
Inline
Side-by-side
tools/cert_create/src/key.c
View file @
4d415c11
...
...
@@ -91,9 +91,10 @@ err:
typedef
int
(
*
key_create_fn_t
)(
key_t
*
key
);
static
const
key_create_fn_t
key_create_fn
[
KEY_ALG_MAX_NUM
]
=
{
key_create_rsa
,
key_create_rsa
,
/* KEY_ALG_RSA */
key_create_rsa
,
/* KEY_ALG_RSA_1_5 */
#ifndef OPENSSL_NO_EC
key_create_ecdsa
,
key_create_ecdsa
,
/* KEY_ALG_ECDSA */
#endif
/* OPENSSL_NO_EC */
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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