diff options
author | Carl Schwan <carl@carlschwan.eu> | 2021-01-31 21:11:23 +0100 |
---|---|---|
committer | Tobias Fella <fella@posteo.de> | 2021-12-01 21:34:52 +0100 |
commit | d9dc94a8fb59c8590c4aa7cdf773c2825e69d823 (patch) | |
tree | aad9158dbc77608150fdee9cdcc28f508edef4e4 /autotests/testolmutility.cpp | |
parent | a5e84c51e9c89021edc8aaade8c751fb6d39cb89 (diff) | |
download | libquotient-d9dc94a8fb59c8590c4aa7cdf773c2825e69d823.tar.gz libquotient-d9dc94a8fb59c8590c4aa7cdf773c2825e69d823.zip |
Fix signing keys
Diffstat (limited to 'autotests/testolmutility.cpp')
-rw-r--r-- | autotests/testolmutility.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/autotests/testolmutility.cpp b/autotests/testolmutility.cpp index cb92a0df..1d9978d3 100644 --- a/autotests/testolmutility.cpp +++ b/autotests/testolmutility.cpp @@ -61,7 +61,6 @@ void TestOlmUtility::verifySignedOneTimeKey() auto utilityBuf = new uint8_t[olm_utility_size()]; auto utility = olm_utility(utilityBuf); - qDebug() << "1" << aliceOlm->identityKeys().ed25519 << msg << QString::fromUtf8(sig); QByteArray signatureBuf1(sig.length(), '0'); std::copy(sig.begin(), sig.end(), signatureBuf1.begin()); @@ -73,7 +72,6 @@ void TestOlmUtility::verifySignedOneTimeKey() msg.size(), (void *)sig.data(), sig.size()); - qDebug() << "2" << aliceOlm->identityKeys().ed25519 << msg << QString::fromUtf8(signatureBuf1); QCOMPARE(std::string(olm_utility_last_error(utility)), "SUCCESS"); QCOMPARE(res, 0); |