scepclient: Generate uppercase transaction ID.

This commit is contained in:
Tobias Brunner
2012-06-11 17:33:29 +02:00
parent f79b665243
commit 3a7c6b39b5
+1 -1
View File
@@ -177,7 +177,7 @@ void scep_generate_transaction_id(public_key_t *key, chunk_t *transID,
memcpy(pos, digest.ptr, digest.len);
/* the transaction id is the serial number in hex format */
*transID = chunk_to_hex(digest, NULL, FALSE);
*transID = chunk_to_hex(digest, NULL, TRUE);
}
/**