1 /* LibTomCrypt, modular cryptographic library -- Tom St Denis
3 * LibTomCrypt is a library that provides various cryptographic
4 * algorithms in a highly modular and flexible manner.
6 * The library is free for all purposes without any express
12 @file der_length_integer.c
13 ASN.1 DER, get length of encoding, Tom St Denis
19 Gets length of DER encoding of num
20 @param num The int to get the size of
21 @param outlen [out] The length of the DER encoding for the given integer
22 @return CRYPT_OK if successful
24 int der_length_integer(void *num, unsigned long *outlen)
29 LTC_ARGCHK(num != NULL);
30 LTC_ARGCHK(outlen != NULL);
32 if (mp_cmp_d(num, 0) != LTC_MP_LT) {
35 /* we only need a leading zero if the msb of the first byte is one */
36 if ((mp_count_bits(num) & 7) == 0 || mp_iszero(num) == LTC_MP_YES) {
43 z = len = leading_zero + mp_unsigned_bin_size(num);
46 /* find power of 2 that is a multiple of eight and greater than count bits */
47 z = mp_count_bits(num);
48 z = z + (8 - (z & 7));
49 if (((mp_cnt_lsb(num)+1)==mp_count_bits(num)) && ((mp_count_bits(num)&7)==0)) --z;
53 /* now we need a length */
58 /* long form (relies on z != 0), assumes length bytes < 128 */
67 /* we need a 0x02 to indicate it's INTEGER */
77 /* ref: $Format:%D$ */
78 /* git commit: $Format:%H$ */
79 /* commit time: $Format:%ai$ */