Skip to content

Commit

Permalink
Removed useless assign
Browse files Browse the repository at this point in the history
  • Loading branch information
DavyLandman committed Jun 28, 2020
1 parent 7a7fed7 commit a5abe6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compact_x25519.c
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ void compact_x25519_derive_encryption_key(
uint8_t *p = key_data;
p = append(p, shared_secret, X25519_SHARED_SIZE);
p = append(p, public_key1, X25519_KEY_SIZE);
p = append(p, public_key2, X25519_KEY_SIZE);
append(p, public_key2, X25519_KEY_SIZE);

struct sha512_state hasher;
sha512_init(&hasher);
Expand Down

0 comments on commit a5abe6f

Please sign in to comment.