/external/bluetooth/bluedroid/stack/smp/ |
aes.h | 121 out[]. In addition, the second key array, o_key[L], is used 138 uint_8t o_key[N_BLOCK] ); 145 unsigned char o_key[N_BLOCK] ); 152 unsigned char o_key[2 * N_BLOCK] ); 159 unsigned char o_key[2 * N_BLOCK] );
|
aes.c | 685 const unsigned char key[N_BLOCK], unsigned char o_key[N_BLOCK] ) 688 if(o_key != key) 689 block_copy( o_key, key ); 690 copy_and_key( s1, in, o_key ); 696 update_encrypt_key_128( o_key, &rc ); 697 add_round_key( s1, o_key ); 702 update_encrypt_key_128( o_key, &rc ); 703 copy_and_key( s1, s2, o_key ); 708 update_encrypt_key_128( o_key, &rc ); 709 copy_and_key( out, s1, o_key ); [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
if_tunnel.h | 27 __be32 o_key; member in struct:ip_tunnel_parm
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
if_tunnel.h | 27 __be32 o_key; member in struct:ip_tunnel_parm
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
if_tunnel.h | 27 __be32 o_key; member in struct:ip_tunnel_parm
|
/external/iproute2/include/linux/ |
if_tunnel.h | 36 __be32 o_key; member in struct:ip_tunnel_parm
|
/external/iproute2/ip/ |
iptunnel.c | 107 p->i_key = p->o_key = get_addr32(*argv); 113 p->i_key = p->o_key = htonl(uval); 133 p->o_key = get_addr32(*argv); 139 p->o_key = htonl(uval); 243 if (p->o_key == 0 && IN_MULTICAST(ntohl(p->iph.daddr))) { 244 p->o_key = p->iph.daddr; 375 if ((p->i_flags&GRE_KEY) && (p->o_flags&GRE_KEY) && p->o_key == p->i_key) 381 printf(" okey %u ", ntohl(p->o_key));
|