Add CBB_add_asn1_uint64.
Companion to CBS_get_asn1_uint64. Also add tests for both the parsing and the serializing. Change-Id: Ic5e9a0089c88b300f874712d0e9964cb35a8c40b Reviewed-on: https://boringssl-review.googlesource.com/1999 Reviewed-by: Adam Langley <agl@google.com>
This commit is contained in:
parent
9f2c0d7a94
commit
b5b6854968
@ -443,6 +443,85 @@ static int test_ber_convert(void) {
|
||||
sizeof(kNSSBER));
|
||||
}
|
||||
|
||||
typedef struct {
|
||||
uint64_t value;
|
||||
const char *encoding;
|
||||
size_t encoding_len;
|
||||
} ASN1_UINT64_TEST;
|
||||
|
||||
static const ASN1_UINT64_TEST kAsn1Uint64Tests[] = {
|
||||
{0, "\x02\x01\x00", 3},
|
||||
{1, "\x02\x01\x01", 3},
|
||||
{127, "\x02\x01\x7f", 3},
|
||||
{128, "\x02\x02\x00\x80", 4},
|
||||
{0xdeadbeef, "\x02\x05\x00\xde\xad\xbe\xef", 7},
|
||||
{0x0102030405060708, "\x02\x08\x01\x02\x03\x04\x05\x06\x07\x08", 10},
|
||||
{0xffffffffffffffff, "\x02\x09\x00\xff\xff\xff\xff\xff\xff\xff\xff", 11},
|
||||
};
|
||||
|
||||
typedef struct {
|
||||
const char *encoding;
|
||||
size_t encoding_len;
|
||||
} ASN1_INVALID_UINT64_TEST;
|
||||
|
||||
static const ASN1_INVALID_UINT64_TEST kAsn1InvalidUint64Tests[] = {
|
||||
/* Bad tag. */
|
||||
{"\x03\x01\x00", 3},
|
||||
/* Negative number. */
|
||||
{"\x02\x01\x80", 3},
|
||||
/* Overflow */
|
||||
{"\x02\x09\x01\x00\x00\x00\x00\x00\x00\x00\x00", 11},
|
||||
};
|
||||
|
||||
static int test_asn1_uint64(void) {
|
||||
size_t i;
|
||||
|
||||
for (i = 0; i < sizeof(kAsn1Uint64Tests) / sizeof(kAsn1Uint64Tests[0]); i++) {
|
||||
const ASN1_UINT64_TEST *test = &kAsn1Uint64Tests[i];
|
||||
CBS cbs;
|
||||
uint64_t value;
|
||||
CBB cbb;
|
||||
uint8_t *out;
|
||||
size_t len;
|
||||
|
||||
CBS_init(&cbs, (const uint8_t *)test->encoding, test->encoding_len);
|
||||
if (!CBS_get_asn1_uint64(&cbs, &value) ||
|
||||
CBS_len(&cbs) != 0 ||
|
||||
value != test->value) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (!CBB_init(&cbb, 0)) {
|
||||
return 0;
|
||||
}
|
||||
if (!CBB_add_asn1_uint64(&cbb, test->value) ||
|
||||
!CBB_finish(&cbb, &out, &len)) {
|
||||
CBB_cleanup(&cbb);
|
||||
return 0;
|
||||
}
|
||||
if (len != test->encoding_len || memcmp(out, test->encoding, len) != 0) {
|
||||
free(out);
|
||||
return 0;
|
||||
}
|
||||
free(out);
|
||||
}
|
||||
|
||||
for (i = 0;
|
||||
i < sizeof(kAsn1InvalidUint64Tests) / sizeof(kAsn1InvalidUint64Tests[0]);
|
||||
i++) {
|
||||
const ASN1_INVALID_UINT64_TEST *test = &kAsn1InvalidUint64Tests[i];
|
||||
CBS cbs;
|
||||
uint64_t value;
|
||||
|
||||
CBS_init(&cbs, (const uint8_t *)test->encoding, test->encoding_len);
|
||||
if (CBS_get_asn1_uint64(&cbs, &value)) {
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
int main(void) {
|
||||
CRYPTO_library_init();
|
||||
|
||||
@ -457,7 +536,8 @@ int main(void) {
|
||||
!test_cbb_misuse() ||
|
||||
!test_cbb_prefixed() ||
|
||||
!test_cbb_asn1() ||
|
||||
!test_ber_convert()) {
|
||||
!test_ber_convert() ||
|
||||
!test_asn1_uint64()) {
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
@ -336,3 +336,39 @@ int CBB_add_u24(CBB *cbb, uint32_t value) {
|
||||
|
||||
return cbb_buffer_add_u(cbb->base, value, 3);
|
||||
}
|
||||
|
||||
int CBB_add_asn1_uint64(CBB *cbb, uint64_t value) {
|
||||
CBB child;
|
||||
size_t i;
|
||||
int started = 0;
|
||||
|
||||
if (!CBB_add_asn1(cbb, &child, CBS_ASN1_INTEGER)) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
for (i = 0; i < 8; i++) {
|
||||
uint8_t byte = (value >> 8*(7-i)) & 0xff;
|
||||
if (!started) {
|
||||
if (byte == 0) {
|
||||
/* Don't encode leading zeros. */
|
||||
continue;
|
||||
}
|
||||
/* If the high bit is set, add a padding byte to make it
|
||||
* unsigned. */
|
||||
if ((byte & 0x80) && !CBB_add_u8(&child, 0)) {
|
||||
return 0;
|
||||
}
|
||||
started = 1;
|
||||
}
|
||||
if (!CBB_add_u8(&child, byte)) {
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
/* 0 is encoded as a single 0, not the empty string. */
|
||||
if (!started && !CBB_add_u8(&child, 0)) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
return CBB_flush(cbb);
|
||||
}
|
||||
|
@ -277,6 +277,10 @@ OPENSSL_EXPORT int CBB_add_u16(CBB *cbb, uint16_t value);
|
||||
* returns one on success and zero otherwise. */
|
||||
OPENSSL_EXPORT int CBB_add_u24(CBB *cbb, uint32_t value);
|
||||
|
||||
/* CBB_add_asn1_uint64 writes an ASN.1 INTEGER into |cbb| using |CBB_add_asn1|
|
||||
* and writes |value| in its contents. It returns one on success and zero on
|
||||
* error. */
|
||||
OPENSSL_EXPORT int CBB_add_asn1_uint64(CBB *cbb, uint64_t value);
|
||||
|
||||
#if defined(__cplusplus)
|
||||
} /* extern C */
|
||||
|
Loading…
Reference in New Issue
Block a user