| 75 | } |
| 76 | |
| 77 | QByteArray SimpleCrypt::encryptToByteArray(const QString& plaintext) |
| 78 | { |
| 79 | QByteArray plaintextArray = plaintext.toUtf8(); |
| 80 | return encryptToByteArray(plaintextArray); |
| 81 | } |
| 82 | |
| 83 | QByteArray SimpleCrypt::encryptToByteArray(QByteArray plaintext) |
| 84 | { |
no test coverage detected