]> pd.if.org Git - zpackage/blob - libtomcrypt/src/pk/asn1/der/octet/der_decode_octet_string.c
commit files needed for zpm-fetchurl
[zpackage] / libtomcrypt / src / pk / asn1 / der / octet / der_decode_octet_string.c
1 /* LibTomCrypt, modular cryptographic library -- Tom St Denis
2  *
3  * LibTomCrypt is a library that provides various cryptographic
4  * algorithms in a highly modular and flexible manner.
5  *
6  * The library is free for all purposes without any express
7  * guarantee it works.
8  */
9 #include "tomcrypt.h"
10
11 /**
12   @file der_decode_octet_string.c
13   ASN.1 DER, encode a OCTET STRING, Tom St Denis
14 */
15
16
17 #ifdef LTC_DER
18
19 /**
20   Store a OCTET STRING
21   @param in      The DER encoded OCTET STRING
22   @param inlen   The size of the DER OCTET STRING
23   @param out     [out] The array of octets stored (one per char)
24   @param outlen  [in/out] The number of octets stored
25   @return CRYPT_OK if successful
26 */
27 int der_decode_octet_string(const unsigned char *in, unsigned long inlen,
28                                   unsigned char *out, unsigned long *outlen)
29 {
30    unsigned long x, y, len;
31
32    LTC_ARGCHK(in     != NULL);
33    LTC_ARGCHK(out    != NULL);
34    LTC_ARGCHK(outlen != NULL);
35
36    /* must have header at least */
37    if (inlen < 2) {
38       return CRYPT_INVALID_PACKET;
39    }
40
41    /* check for 0x04 */
42    if ((in[0] & 0x1F) != 0x04) {
43       return CRYPT_INVALID_PACKET;
44    }
45    x = 1;
46
47    /* decode the length */
48    if (in[x] & 0x80) {
49       /* valid # of bytes in length are 1,2,3 */
50       y = in[x] & 0x7F;
51       if ((y == 0) || (y > 3) || ((x + y) > inlen)) {
52          return CRYPT_INVALID_PACKET;
53       }
54
55       /* read the length in */
56       len = 0;
57       ++x;
58       while (y--) {
59          len = (len << 8) | in[x++];
60       }
61    } else {
62       len = in[x++] & 0x7F;
63    }
64
65    /* is it too long? */
66    if (len > *outlen) {
67       *outlen = len;
68       return CRYPT_BUFFER_OVERFLOW;
69    }
70
71    if (len + x > inlen) {
72       return CRYPT_INVALID_PACKET;
73    }
74
75    /* read the data */
76    for (y = 0; y < len; y++) {
77        out[y] = in[x++];
78    }
79
80    *outlen = y;
81
82    return CRYPT_OK;
83 }
84
85 #endif
86
87 /* ref:         $Format:%D$ */
88 /* git commit:  $Format:%H$ */
89 /* commit time: $Format:%ai$ */