From f813bb704f4eab542640517716bd14257c5a707f Mon Sep 17 00:00:00 2001 From: Nicholas Guriev Date: Sun, 3 Dec 2017 18:51:07 +0300 Subject: [PATCH] Optimize key initialization * Do not do redundant copying of numbers. --- Telegram/SourceFiles/mtproto/rsa_public_key.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Telegram/SourceFiles/mtproto/rsa_public_key.cpp b/Telegram/SourceFiles/mtproto/rsa_public_key.cpp index fdc86ff5c..6171d79ea 100644 --- a/Telegram/SourceFiles/mtproto/rsa_public_key.cpp +++ b/Telegram/SourceFiles/mtproto/rsa_public_key.cpp @@ -79,8 +79,8 @@ public: } Private(base::const_byte_span nBytes, base::const_byte_span eBytes) : _rsa(RSA_new()) { if (_rsa) { - BIGNUM *n = BN_dup(openssl::BigNum(nBytes).raw()); - BIGNUM *e = BN_dup(openssl::BigNum(eBytes).raw()); + BIGNUM *n = openssl::BigNum(nBytes).raw(); + BIGNUM *e = openssl::BigNum(eBytes).raw(); RSA_set0_key(_rsa, n, e, nullptr); if (!n || !e) { RSA_free(base::take(_rsa));