Browse Source

[CritFix] Fix writing of encrypted HTTP requests

tags/1.3.0
Vsevolod Stakhov 8 years ago
parent
commit
5a617503b7
2 changed files with 9 additions and 1 deletions
  1. 8
    0
      src/libcryptobox/keypair.c
  2. 1
    1
      src/libutil/http.c

+ 8
- 0
src/libcryptobox/keypair.c View File

@@ -460,6 +460,14 @@ rspamd_pubkey_calculate_nm (struct rspamd_cryptobox_pubkey *p,
g_assert (kp->type == p->type);
g_assert (p->type == RSPAMD_KEYPAIR_KEX);

if (p->nm == NULL) {
if (posix_memalign ((void **)&p->nm, 32, sizeof (*p->nm)) != 0) {
abort ();
}

REF_INIT_RETAIN (p->nm, rspamd_cryptobox_nm_dtor);
}

if (kp->alg == RSPAMD_CRYPTOBOX_MODE_25519) {
struct rspamd_cryptobox_pubkey_25519 *rk_25519 =
RSPAMD_CRYPTOBOX_PUBKEY_25519(p);

+ 1
- 1
src/libutil/http.c View File

@@ -1495,7 +1495,7 @@ rspamd_http_connection_encrypt_message (

cnt = i;

if ((nm = rspamd_pubkey_get_nm (peer_key))) {
if ((nm = rspamd_pubkey_get_nm (peer_key)) == NULL) {
nm = rspamd_pubkey_calculate_nm (peer_key, priv->local_key);
}


Loading…
Cancel
Save