We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a7fed7 commit a5abe6fCopy full SHA for a5abe6f
src/compact_x25519.c
@@ -48,7 +48,7 @@ void compact_x25519_derive_encryption_key(
48
uint8_t *p = key_data;
49
p = append(p, shared_secret, X25519_SHARED_SIZE);
50
p = append(p, public_key1, X25519_KEY_SIZE);
51
- p = append(p, public_key2, X25519_KEY_SIZE);
+ append(p, public_key2, X25519_KEY_SIZE);
52
53
struct sha512_state hasher;
54
sha512_init(&hasher);
0 commit comments