From a8084ee011a74e308548ca73b014fe312d483ec0 Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Wed, 2 Nov 2011 18:48:51 +0100 Subject: [PATCH] pkcs11: Store public key length in bits. --- src/libstrongswan/plugins/pkcs11/pkcs11_public_key.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/libstrongswan/plugins/pkcs11/pkcs11_public_key.c b/src/libstrongswan/plugins/pkcs11/pkcs11_public_key.c index 81ab6cb31a..ee171ae188 100644 --- a/src/libstrongswan/plugins/pkcs11/pkcs11_public_key.c +++ b/src/libstrongswan/plugins/pkcs11/pkcs11_public_key.c @@ -42,7 +42,7 @@ struct private_pkcs11_public_key_t { key_type_t type; /** - * Key size in bytes + * Key size in bits */ size_t k; @@ -81,7 +81,7 @@ METHOD(public_key_t, get_type, key_type_t, METHOD(public_key_t, get_keysize, int, private_pkcs11_public_key_t *this) { - return this->k * 8; + return this->k; } METHOD(public_key_t, verify, bool, @@ -276,7 +276,7 @@ static private_pkcs11_public_key_t *create(key_type_t type, size_t k, }, }, .type = type, - .k = k, + .k = k * 8, .lib = p11, .slot = slot, .session = session, -- 2.47.2