From: Tobias Brunner Date: Wed, 2 Nov 2011 17:48:51 +0000 (+0100) Subject: pkcs11: Store public key length in bits. X-Git-Tag: 4.6.0~30 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a8084ee011a74e308548ca73b014fe312d483ec0;p=thirdparty%2Fstrongswan.git pkcs11: Store public key length in bits. --- 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,