summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@redhat.com>2016-06-16 10:08:34 +0200
committerNikos Mavrogiannopoulos <nmav@redhat.com>2016-06-16 10:08:34 +0200
commit2804b7333595e25a4a7ce732eaf3f4ce3302b088 (patch)
treea604da5b9db44001ce274a2d7cee5b0891d524a9
parentf769306b23f1c1ba66d43ece81128e46c8469846 (diff)
downloadgnutls-2804b7333595e25a4a7ce732eaf3f4ce3302b088.tar.gz
Corrected the writing of serial number in PKCS#11 modules
That is previously the serial number was written in raw format, but in PKCS#11 the serial number must be set encoded as integer. Report and fix by Stanislav Zidek.
-rw-r--r--lib/pkcs11_write.c13
1 files changed, 9 insertions, 4 deletions
diff --git a/lib/pkcs11_write.c b/lib/pkcs11_write.c
index c12d8ace73..5732a8e373 100644
--- a/lib/pkcs11_write.c
+++ b/lib/pkcs11_write.c
@@ -97,6 +97,7 @@ gnutls_pkcs11_copy_x509_crt2(const char *token_url,
struct p11_kit_uri *info = NULL;
ck_rv_t rv;
size_t der_size, id_size, serial_size;
+ gnutls_datum_t serial_der = {NULL, 0};
uint8_t *der = NULL;
uint8_t serial[128];
uint8_t id[20];
@@ -201,10 +202,13 @@ gnutls_pkcs11_copy_x509_crt2(const char *token_url,
serial_size = sizeof(serial);
if (gnutls_x509_crt_get_serial(crt, serial, &serial_size) >= 0) {
- a[a_val].type = CKA_SERIAL_NUMBER;
- a[a_val].value = (void *) serial;
- a[a_val].value_len = serial_size;
- a_val++;
+ ret = _gnutls_x509_ext_gen_number(serial, serial_size, &serial_der);
+ if (ret >= 0) {
+ a[a_val].type = CKA_SERIAL_NUMBER;
+ a[a_val].value = (void *) serial_der.data;
+ a[a_val].value_len = serial_der.size;
+ a_val++;
+ }
}
if (label) {
@@ -231,6 +235,7 @@ gnutls_pkcs11_copy_x509_crt2(const char *token_url,
cleanup:
gnutls_free(der);
+ gnutls_free(serial_der.data);
pkcs11_close_session(&sinfo);
return ret;