From 0e7456405ee71a775ead6094913741b2cccd9618 Mon Sep 17 00:00:00 2001 From: Michael Baentsch Date: Tue, 22 Jun 2021 12:19:33 +0200 Subject: [PATCH] CCI update (#107) * CCI icon update to OQS-v8 * correct for build without openssl --- README.md | 2 +- sshkey.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index dafd659aa495..d7f7ea179806 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ [![AppVeyor](https://ci.appveyor.com/api/projects/status/uwl8qgs60mqh5x9j?svg=true)](https://ci.appveyor.com/project/dstebila/openssh/branch/OQS-v8), -[![CircleCI](https://circleci.com/gh/open-quantum-safe/openssh/tree/OQS-master.svg?style=svg)](https://circleci.com/gh/open-quantum-safe/openssh/tree/OQS-master) +[![CircleCI](https://circleci.com/gh/open-quantum-safe/openssh/tree/OQS-v8.svg?style=svg)](https://circleci.com/gh/open-quantum-safe/openssh/tree/OQS-v8) OQS-OpenSSH ================================== diff --git a/sshkey.c b/sshkey.c index 08a71728f56e..9f2bf165b41b 100644 --- a/sshkey.c +++ b/sshkey.c @@ -515,8 +515,8 @@ sshkey_size(const struct sshkey *k) return BN_num_bits(rsa_n) + k->oqs_pk_len; CASE_KEY_ECDSA_HYBRID: return sshkey_curve_nid_to_bits(k->ecdsa_nid) + k->oqs_pk_len; - } #endif /* WITH_OPENSSL */ + } return 0; }