HomeSort by relevance Sort by last modified time
    Searched refs:unitmp (Results 1 - 2 of 2) sorted by null

  /external/openssl/crypto/pkcs12/
p12_utl.c 68 unsigned char *unitmp; local
71 if (!(unitmp = OPENSSL_malloc(ulen))) return NULL;
73 unitmp[i] = 0;
74 unitmp[i + 1] = asc[i>>1];
77 unitmp[ulen - 2] = 0;
78 unitmp[ulen - 1] = 0;
80 if (uni) *uni = unitmp;
81 return unitmp;
  /external/chromium_org/third_party/boringssl/src/crypto/pkcs8/
pkcs8.c 81 uint8_t *unitmp; local
88 unitmp = OPENSSL_malloc(ulen);
89 if (unitmp == NULL) {
93 unitmp[i] = 0;
94 unitmp[i + 1] = ascii[i >> 1];
98 unitmp[ulen - 2] = 0;
99 unitmp[ulen - 1] = 0;
101 *out = unitmp;
    [all...]

Completed in 73 milliseconds