sk_key.c 989 Bytes
/* Although this is a "C" file, it is included in the
 * source that will instantiate the arrays below. This
 * is because the same data is needed on both the bb
 * and host platforms (needed on the host for tools
 * to package binaries with the correct key).
 */

/* big endian specific aes constants */

u32 const ekey[] = {
    0x7604543b, 0x46f4165e, 0x1865ea0e, 0xe96422d0, 
    0x53652015, 0xe6734133, 0x33345733, 0x794e9746, 
    0x66fb71ec, 0xb5166126, 0xd5471600, 0x4a7ac075, 
    0x07515ac1, 0xd3ed10ca, 0x60517726, 0x9f3dd675, 
    0xd20de309, 0xd4bc4a0b, 0xb3bc67ec, 0xff6ca153, 
    0xd605848a, 0x06b1a902, 0x67002de7, 0x4cd0c6bf, 
    0xf4152062, 0xd0b42d88, 0x61b184e5, 0x2bd0eb58, 
    0xac3b3aed, 0x24a10dea, 0xb105a96d, 0x4a616fbd, 
    0x97fb955c, 0x889a3707, 0x95a4a487, 0xfb64c6d0, 
    0x36281b15, 0x1f61a25b, 0x1d3e9380, 0x6ec06257, 
    0xa8190276, 0x7e25db17, 0x0f3449c5, 0xd94b162f 
};

u32 const iv[] = {
    0xa438b341,0x0298747b,0x0c089d8f,0x6d2991a8    
};