HomeSort by: relevance | last modified time | path
    Searched defs:b64t (Results 1 - 1 of 1) sorted by relevancy

  /src/crypto/dist/ipsec-tools/src/racoon/
getcertsbyname.c 345 static const char b64t[] = local
351 printf("%c", b64t[(p[0] >> 2) & 0x3f]);
352 printf("%c", b64t[((p[0] << 4) & 0x30) | ((p[1] >> 4) & 0x0f)]);
353 printf("%c", b64t[((p[1] << 2) & 0x3c) | ((p[2] >> 6) & 0x03)]);
354 printf("%c", b64t[p[2] & 0x3f]);
360 printf("%c", b64t[(p[0] >> 2) & 0x3f]);
361 printf("%c", b64t[((p[0] << 4) & 0x30)| ((p[1] >> 4) & 0x0f)]);
362 printf("%c", b64t[((p[1] << 2) & 0x3c)]);
365 printf("%c", b64t[(p[0] >> 2) & 0x3f]);
366 printf("%c", b64t[((p[0] << 4) & 0x30)])
    [all...]

Completed in 24 milliseconds