the max serial size is 160 bits, not 160 bytes...

This commit is contained in:
kakwa 2016-09-11 22:04:03 +02:00
parent 96587d3461
commit c68c9b85ad
1 changed files with 1 additions and 1 deletions

View File

@ -358,7 +358,7 @@ end:
// It's less painful to manage than an incremental serial stored in a file
// and a 150 bits size is more than enough to prevent collision.
static ASN1_INTEGER *serial_cb(TS_RESP_CTX *ctx, void *data42) {
unsigned char data[150] = {0};
unsigned char data[20] = {0};
RAND_bytes(data, sizeof(data));
// data[0] &= 0x7F;