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_boolean.c
13 ASN.1 DER, get length of a BOOLEAN, Tom St Denis
18 Gets length of DER encoding of a BOOLEAN
19 @param outlen [out] The length of the DER encoding
20 @return CRYPT_OK if successful
22 int der_length_boolean(unsigned long *outlen)
24 LTC_ARGCHK(outlen != NULL);
31 /* ref: $Format:%D$ */
32 /* git commit: $Format:%H$ */
33 /* commit time: $Format:%ai$ */