Skip to content

Commit

Permalink
void return types for curve25519
Browse files Browse the repository at this point in the history
  • Loading branch information
mkj committed May 29, 2020
1 parent 846b8cd commit ad1e9b7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 16 deletions.
11 changes: 3 additions & 8 deletions curve25519.c
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ sv pow2523(gf o,const gf i)
#endif /* DROPBEAR_ED25519 && DROPBEAR_SIGNKEY_VERIFY */

#if DROPBEAR_CURVE25519
int dropbear_curve25519_scalarmult(u8 *q,const u8 *n,const u8 *p)
void dropbear_curve25519_scalarmult(u8 *q,const u8 *n,const u8 *p)
{
u8 z[32];
i64 x[80],r,i;
Expand Down Expand Up @@ -256,7 +256,6 @@ int dropbear_curve25519_scalarmult(u8 *q,const u8 *n,const u8 *p)
inv25519(x+32,x+32);
M(x+16,x+16,x+32);
pack25519(q,x+16);
return 0;
}
#endif /* DROPBEAR_CURVE25519 */

Expand Down Expand Up @@ -338,7 +337,7 @@ sv scalarbase(gf p[4],const u8 *s)
scalarmult(p,q,s);
}

int dropbear_ed25519_make_key(u8 *pk,u8 *sk)
void dropbear_ed25519_make_key(u8 *pk,u8 *sk)
{
u8 d[64];
gf p[4];
Expand All @@ -352,8 +351,6 @@ int dropbear_ed25519_make_key(u8 *pk,u8 *sk)

scalarbase(p,d);
pack(pk,p);

return 0;
}

static const u64 L[32] = {0xed, 0xd3, 0xf5, 0x5c, 0x1a, 0x63, 0x12, 0x58, 0xd6, 0x9c, 0xf7, 0xa2, 0xde, 0xf9, 0xde, 0x14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x10};
Expand Down Expand Up @@ -392,7 +389,7 @@ sv reduce(u8 *r)
modL(r,x);
}

int dropbear_ed25519_sign(const u8 *m,u32 mlen,u8 *s,u32 *slen,const u8 *sk, const u8 *pk)
void dropbear_ed25519_sign(const u8 *m,u32 mlen,u8 *s,u32 *slen,const u8 *sk, const u8 *pk)
{
hash_state hs;
u8 d[64],h[64],r[64];
Expand Down Expand Up @@ -426,8 +423,6 @@ int dropbear_ed25519_sign(const u8 *m,u32 mlen,u8 *s,u32 *slen,const u8 *sk, con
FOR(i,32) x[i] = (u64) r[i];
FOR(i,32) FOR(j,32) x[i+j] += h[i] * (u64) d[j];
modL(s + 32,x);

return 0;
}

#if DROPBEAR_SIGNKEY_VERIFY
Expand Down
6 changes: 3 additions & 3 deletions curve25519.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
#ifndef DROPBEAR_CURVE25519_H
#define DROPBEAR_CURVE25519_H

int dropbear_curve25519_scalarmult(unsigned char *q, const unsigned char *n, const unsigned char *p);
int dropbear_ed25519_make_key(unsigned char *pk, unsigned char *sk);
int dropbear_ed25519_sign(const unsigned char *m, unsigned long mlen,
void dropbear_curve25519_scalarmult(unsigned char *q, const unsigned char *n, const unsigned char *p);
void dropbear_ed25519_make_key(unsigned char *pk, unsigned char *sk);
void dropbear_ed25519_sign(const unsigned char *m, unsigned long mlen,
unsigned char *s, unsigned long *slen,
const unsigned char *sk, const unsigned char *pk);
int dropbear_ed25519_verify(const unsigned char *m, unsigned long mlen,
Expand Down
8 changes: 3 additions & 5 deletions ed25519.c
Original file line number Diff line number Diff line change
Expand Up @@ -139,11 +139,9 @@ void buf_put_ed25519_sign(buffer* buf, const dropbear_ed25519_key *key, const bu
TRACE(("enter buf_put_ed25519_sign"))
dropbear_assert(key != NULL);

if (dropbear_ed25519_sign(data_buf->data, data_buf->len,
s, &slen, key->priv, key->pub) == 0) {
buf_putstring(buf, SSH_SIGNKEY_ED25519, SSH_SIGNKEY_ED25519_LEN);
buf_putstring(buf, s, slen);
}
dropbear_ed25519_sign(data_buf->data, data_buf->len, s, &slen, key->priv, key->pub);
buf_putstring(buf, SSH_SIGNKEY_ED25519, SSH_SIGNKEY_ED25519_LEN);
buf_putstring(buf, s, slen);

TRACE(("leave buf_put_ed25519_sign"))
}
Expand Down

0 comments on commit ad1e9b7

Please sign in to comment.