|
|
@ -553,11 +553,6 @@ stream_decrypt(buffer_t *ciphertext, cipher_ctx_t *cipher_ctx, size_t capacity) |
|
|
|
return CRYPTO_ERROR; |
|
|
|
} |
|
|
|
} |
|
|
|
} else if (cipher_ctx->init == 1) { |
|
|
|
if (cipher->method >= RC4_MD5) { |
|
|
|
ppbloom_add((void *)cipher_ctx->nonce, cipher->nonce_len); |
|
|
|
cipher_ctx->init = 2; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
if (ciphertext->len <= 0) |
|
|
@ -601,6 +596,14 @@ stream_decrypt(buffer_t *ciphertext, cipher_ctx_t *cipher_ctx, size_t capacity) |
|
|
|
memcpy(ciphertext->data, plaintext->data, plaintext->len); |
|
|
|
ciphertext->len = plaintext->len; |
|
|
|
|
|
|
|
// Add to bloom filter |
|
|
|
if (cipher_ctx->init == 1) { |
|
|
|
if (cipher->method >= RC4_MD5) { |
|
|
|
ppbloom_add((void *)cipher_ctx->nonce, cipher->nonce_len); |
|
|
|
cipher_ctx->init = 2; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
return CRYPTO_OK; |
|
|
|
} |
|
|
|
|
|
|
|