/**************************************************************************** ** ** Copyright (C) 2022 The Qt Company Ltd. ** Copyright (C) 2014 Jeremy Lainé ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the QtNetwork module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:COMM$ ** ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see https://www.qt.io/terms-conditions. For further ** information use the contact form at https://www.qt.io/contact-us. ** ** $QT_END_LICENSE$ ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ******************************************************************************/ #include "qtlskey_st_p.h" #include #include #include #include QT_BEGIN_NAMESPACE namespace QTlsPrivate { namespace { // Before this code was located in qsslkey_mac.cpp. QByteArray wrapCCCrypt(CCOperation ccOp, QSslKeyPrivate::Cipher cipher, const QByteArray &data, const QByteArray &key, const QByteArray &iv) { int blockSize = {}; CCAlgorithm ccAlgorithm = {}; switch (cipher) { case Cipher::DesCbc: blockSize = kCCBlockSizeDES; ccAlgorithm = kCCAlgorithmDES; break; case Cipher::DesEde3Cbc: blockSize = kCCBlockSize3DES; ccAlgorithm = kCCAlgorithm3DES; break; case Cipher::Rc2Cbc: blockSize = kCCBlockSizeRC2; ccAlgorithm = kCCAlgorithmRC2; break; case Cipher::Aes128Cbc: case Cipher::Aes192Cbc: case Cipher::Aes256Cbc: blockSize = kCCBlockSizeAES128; ccAlgorithm = kCCAlgorithmAES; break; } std::size_t plainLength = 0; QByteArray plain(data.size() + blockSize, 0); CCCryptorStatus status = CCCrypt(ccOp, ccAlgorithm, kCCOptionPKCS7Padding, key.constData(), std::size_t(key.size()), iv.constData(), data.constData(), std::size_t(data.size()), plain.data(), std::size_t(plain.size()), &plainLength); if (status == kCCSuccess) return plain.left(int(plainLength)); return {}; } } // Unnamed namespace. QByteArray TlsKeySecureTransport::decrypt(Cipher cipher, const QByteArray &data, const QByteArray &key, const QByteArray &iv) const { return wrapCCCrypt(kCCDecrypt, cipher, data, key, iv); } QByteArray TlsKeySecureTransport::encrypt(Cipher cipher, const QByteArray &data, const QByteArray &key, const QByteArray &iv) const { return wrapCCCrypt(kCCEncrypt, cipher, data, key, iv); } } // namespace QTlsPrivate QT_END_NAMESPACE