mirror of
https://github.com/curl/curl.git
synced 2026-07-31 07:58:04 +03:00
curl_ed25519.c fmt
This commit is contained in:
parent
1c9a13e78d
commit
bb933a50b4
1 changed files with 12 additions and 4 deletions
|
|
@ -147,8 +147,12 @@ CURLcode Curl_ed25519_sign(const unsigned char *key, size_t keylen,
|
|||
const unsigned char *msg, size_t msglen,
|
||||
unsigned char *sig, size_t *siglen)
|
||||
{
|
||||
(void)key; (void)keylen; (void)msg; (void)msglen;
|
||||
(void)sig; (void)siglen;
|
||||
(void)key;
|
||||
(void)keylen;
|
||||
(void)msg;
|
||||
(void)msglen;
|
||||
(void)sig;
|
||||
(void)siglen;
|
||||
return CURLE_NOT_BUILT_IN;
|
||||
}
|
||||
|
||||
|
|
@ -160,8 +164,12 @@ CURLcode Curl_ed25519_sign(const unsigned char *key, size_t keylen,
|
|||
const unsigned char *msg, size_t msglen,
|
||||
unsigned char *sig, size_t *siglen)
|
||||
{
|
||||
(void)key; (void)keylen; (void)msg; (void)msglen;
|
||||
(void)sig; (void)siglen;
|
||||
(void)key;
|
||||
(void)keylen;
|
||||
(void)msg;
|
||||
(void)msglen;
|
||||
(void)sig;
|
||||
(void)siglen;
|
||||
return CURLE_NOT_BUILT_IN;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue