Lines Matching defs:raw
26 * turn the raw key into something cooked
27 * - the raw key should include the length in the two bytes at the front
29 * - "base64" encode the strange keys, mapping 3 bytes of raw to four of
31 * - need to cut the cooked key into 252 char lengths (189 raw bytes)
33 char *cachefiles_cook_key(const u8 *raw, int keylen, uint8_t type)
44 csum = raw[0] + raw[1];
47 ch = raw[loop];
89 acc = *(uint16_t *) raw;
90 raw += 2;
106 key[len++] = *raw++;
125 acc = *raw++;
126 acc |= *raw++ << 8;
127 acc |= *raw++ << 16;