Commit 6d58d50e authored by Peter Maydell's avatar Peter Maydell
Browse files

Merge remote-tracking branch 'remotes/berrange/tags/pull-qcrypto-20170905-1' into staging



Merge QEMU crypto 2017/09/05 v1

# gpg: Signature made Tue 05 Sep 2017 10:28:17 BST
# gpg:                using RSA key 0xBE86EBB415104FDF
# gpg: Good signature from "Daniel P. Berrange <dan@berrange.com>"
# gpg:                 aka "Daniel P. Berrange <berrange@redhat.com>"
# Primary key fingerprint: DAF3 A6FD B26B 6291 2D0E  8E3F BE86 EBB4 1510 4FDF

* remotes/berrange/tags/pull-qcrypto-20170905-1:
  crypto: fix test cert generation to not use SHA1 algorithm
  tests: fix incorrect size_t format in benchmark-crypto

Signed-off-by: default avatarPeter Maydell <peter.maydell@linaro.org>
parents d3e3447d 23c1595b
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -59,7 +59,7 @@ static void test_cipher_speed(const void *opaque)
    total /= 1024 * 1024; /* to MB */

    g_print("cbc(aes128): ");
    g_print("Testing chunk_size %ld bytes ", chunk_size);
    g_print("Testing chunk_size %zu bytes ", chunk_size);
    g_print("done: %.2f MB in %.2f secs: ", total, g_test_timer_last());
    g_print("%.2f MB/sec\n", total / g_test_timer_last());

@@ -80,7 +80,7 @@ int main(int argc, char **argv)

    for (i = 512; i <= (64 * 1204); i *= 2) {
        memset(name, 0 , sizeof(name));
        snprintf(name, sizeof(name), "/crypto/cipher/speed-%lu", i);
        snprintf(name, sizeof(name), "/crypto/cipher/speed-%zu", i);
        g_test_add_data_func(name, (void *)i, test_cipher_speed);
    }

+2 −2
Original line number Diff line number Diff line
@@ -41,7 +41,7 @@ static void test_hash_speed(const void *opaque)

    total /= 1024 * 1024; /* to MB */
    g_print("sha256: ");
    g_print("Testing chunk_size %ld bytes ", chunk_size);
    g_print("Testing chunk_size %zu bytes ", chunk_size);
    g_print("done: %.2f MB in %.2f secs: ", total, g_test_timer_last());
    g_print("%.2f MB/sec\n", total / g_test_timer_last());

@@ -59,7 +59,7 @@ int main(int argc, char **argv)

    for (i = 512; i <= (64 * 1204); i *= 2) {
        memset(name, 0 , sizeof(name));
        snprintf(name, sizeof(name), "/crypto/hash/speed-%lu", i);
        snprintf(name, sizeof(name), "/crypto/hash/speed-%zu", i);
        g_test_add_data_func(name, (void *)i, test_hash_speed);
    }

+2 −2
Original line number Diff line number Diff line
@@ -56,7 +56,7 @@ static void test_hmac_speed(const void *opaque)
    total /= 1024 * 1024; /* to MB */

    g_print("hmac(sha256): ");
    g_print("Testing chunk_size %ld bytes ", chunk_size);
    g_print("Testing chunk_size %zu bytes ", chunk_size);
    g_print("done: %.2f MB in %.2f secs: ", total, g_test_timer_last());
    g_print("%.2f MB/sec\n", total / g_test_timer_last());

@@ -74,7 +74,7 @@ int main(int argc, char **argv)

    for (i = 512; i <= (64 * 1204); i *= 2) {
        memset(name, 0 , sizeof(name));
        snprintf(name, sizeof(name), "/crypto/hmac/speed-%lu", i);
        snprintf(name, sizeof(name), "/crypto/hmac/speed-%zu", i);
        g_test_add_data_func(name, (void *)i, test_hmac_speed);
    }

+2 −1
Original line number Diff line number Diff line
@@ -406,7 +406,8 @@ test_tls_generate_cert(QCryptoTLSTestCertReq *req,
     * If no 'ca' is set then we are self signing
     * the cert. This is done for the root CA certs
     */
    err = gnutls_x509_crt_sign(crt, ca ? ca : crt, privkey);
    err = gnutls_x509_crt_sign2(crt, ca ? ca : crt, privkey,
                                GNUTLS_DIG_SHA256, 0);
    if (err < 0) {
        g_critical("Failed to sign certificate %s",
                   gnutls_strerror(err));