Searched refs:aad (Results 1 - 25 of 34) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/security/apparmor/
H A Daudit.c117 audit_log_string(ab, aa_audit_type[sa->aad.type]);
120 if (sa->aad.op) {
122 audit_log_string(ab, op_table[sa->aad.op]);
125 if (sa->aad.info) {
127 audit_log_string(ab, sa->aad.info);
128 if (sa->aad.error)
129 audit_log_format(ab, " error=%d", sa->aad.error);
132 if (sa->aad.profile) {
133 struct aa_profile *profile = sa->aad.profile;
147 if (sa->aad
[all...]
H A Dresource.c32 rlim_names[sa->aad.rlim.rlim], sa->aad.rlim.max);
50 sa.aad.op = OP_SETRLIMIT,
51 sa.aad.rlim.rlim = resource;
52 sa.aad.rlim.max = value;
53 sa.aad.error = error;
H A Dipc.c28 audit_log_untrustedstring(ab, sa->aad.target);
44 sa.aad.op = OP_PTRACE;
45 sa.aad.target = target;
46 sa.aad.error = error;
H A Dfile.c70 if (sa->aad.fs.request & AA_AUDIT_FILE_MASK) {
72 audit_file_mask(ab, sa->aad.fs.request);
74 if (sa->aad.fs.denied & AA_AUDIT_FILE_MASK) {
76 audit_file_mask(ab, sa->aad.fs.denied);
78 if (sa->aad.fs.request & AA_AUDIT_FILE_MASK) {
80 audit_log_format(ab, " ouid=%d", sa->aad.fs.ouid);
83 if (sa->aad.fs.target) {
85 audit_log_untrustedstring(ab, sa->aad.fs.target);
111 sa.aad.op = op,
112 sa.aad
[all...]
H A Dcapability.c70 sa.aad.op = OP_CAPABLE;
71 sa.aad.error = error;
H A Dlib.c67 sa.aad.info = str;
H A Dpolicy_unpack.c73 if (sa->aad.iface.target) {
74 struct aa_profile *name = sa->aad.iface.target;
78 if (sa->aad.iface.pos)
79 audit_log_format(ab, " offset=%ld", sa->aad.iface.pos);
98 sa.aad.iface.pos = e->pos - e->start;
99 sa.aad.iface.target = new;
100 sa.aad.name = name;
101 sa.aad.info = info;
102 sa.aad.error = error;
H A Dpolicy.c894 sa.aad.op = op;
895 sa.aad.name = name;
896 sa.aad.info = info;
897 sa.aad.error = error;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/mac80211/
H A Daes_ccm.c22 u8 *b_0, *aad, *b, *s_0; local
25 aad = scratch + 4 * AES_BLOCK_LEN;
33 aad[i] ^= b[i];
34 crypto_cipher_encrypt_one(tfm, b, aad);
36 aad += AES_BLOCK_LEN;
39 aad[i] ^= b[i];
40 crypto_cipher_encrypt_one(tfm, a, aad);
57 u8 *pos, *cpos, *b, *s_0, *e, *b_0, *aad; local
63 aad = scratch + 4 * AES_BLOCK_LEN;
97 u8 *pos, *cpos, *b, *s_0, *a, *b_0, *aad; local
[all...]
H A Daes_cmac.h15 void ieee80211_aes_cmac(struct crypto_cipher *tfm, u8 *scratch, const u8 *aad,
H A Dwpa.c256 u8 *b_0, *aad; local
262 aad = scratch + 4 * AES_BLOCK_LEN;
302 put_unaligned_be16(len_a, &aad[0]);
303 put_unaligned(mask_fc, (__le16 *)&aad[2]);
304 memcpy(&aad[4], &hdr->addr1, 3 * ETH_ALEN);
307 aad[22] = *((u8 *) &hdr->seq_ctrl) & 0x0f;
308 aad[23] = 0;
311 memcpy(&aad[24], hdr->addr4, ETH_ALEN);
312 aad[30] = qos_tid;
313 aad[3
479 bip_aad(struct sk_buff *skb, u8 *aad) argument
510 u8 *pn, aad[20]; local
553 u8 aad[20], mic[8], ipn[6]; local
[all...]
H A Daes_cmac.c98 void ieee80211_aes_cmac(struct crypto_cipher *tfm, u8 *scratch, const u8 *aad, argument
106 addr[0] = aad;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/evp/
H A Devp_test.c136 const unsigned char *aad, int an,
153 hexdump(stdout, "AAD", aad, an);
181 if (an && !EVP_EncryptUpdate(&ctx, NULL, &outl, aad, an)) {
212 if (an && !EVP_EncryptUpdate(&ctx, NULL, &outl, aad, an)) {
296 if (an && !EVP_DecryptUpdate(&ctx, NULL, &outl, aad, an)) {
328 if (an && !EVP_EncryptUpdate(&ctx, NULL, &outl, aad, an)) {
381 const unsigned char *aad, int an,
390 test1(c, key, kn, iv, in, plaintext, pn, ciphertext, cn, aad, an, tag, tn,
501 unsigned char *iv, *key, *plaintext, *ciphertext, *aad, *tag; local
520 tag = aad
132 test1(const EVP_CIPHER *c, const unsigned char *key, int kn, const unsigned char *iv, int in, const unsigned char *plaintext, int pn, const unsigned char *ciphertext, int cn, const unsigned char *aad, int an, const unsigned char *tag, int tn, int encdec) argument
377 test_cipher(const char *cipher, const unsigned char *key, int kn, const unsigned char *iv, int in, const unsigned char *plaintext, int pn, const unsigned char *ciphertext, int cn, const unsigned char *aad, int an, const unsigned char *tag, int tn, int encdec) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/evp/
H A Devp_test.c136 const unsigned char *aad, int an,
153 hexdump(stdout, "AAD", aad, an);
181 if (an && !EVP_EncryptUpdate(&ctx, NULL, &outl, aad, an)) {
212 if (an && !EVP_EncryptUpdate(&ctx, NULL, &outl, aad, an)) {
296 if (an && !EVP_DecryptUpdate(&ctx, NULL, &outl, aad, an)) {
328 if (an && !EVP_EncryptUpdate(&ctx, NULL, &outl, aad, an)) {
381 const unsigned char *aad, int an,
390 test1(c, key, kn, iv, in, plaintext, pn, ciphertext, cn, aad, an, tag, tn,
501 unsigned char *iv, *key, *plaintext, *ciphertext, *aad, *tag; local
520 tag = aad
132 test1(const EVP_CIPHER *c, const unsigned char *key, int kn, const unsigned char *iv, int in, const unsigned char *plaintext, int pn, const unsigned char *ciphertext, int cn, const unsigned char *aad, int an, const unsigned char *tag, int tn, int encdec) argument
377 test_cipher(const char *cipher, const unsigned char *key, int kn, const unsigned char *iv, int in, const unsigned char *plaintext, int pn, const unsigned char *ciphertext, int cn, const unsigned char *aad, int an, const unsigned char *tag, int tn, int encdec) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/rtl8187se/ieee80211/
H A Dieee80211_crypt_ccmp.c124 u8 aad[2 * AES_BLOCK_LEN]; local
166 aad[0] = 0; /* aad_len >> 8 */
167 aad[1] = aad_len & 0xff;
168 aad[2] = pos[0] & 0x8f;
169 aad[3] = pos[1] & 0xc7;
170 memcpy(aad + 4, hdr->addr1, 3 * ETH_ALEN);
172 aad[22] = pos[0] & 0x0f;
173 aad[23] = 0; /* all bits masked */
174 memset(aad + 24, 0, 8);
176 memcpy(aad
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/rtl8192e/ieee80211/
H A Dieee80211_crypt_ccmp.c128 u8 aad[2 * AES_BLOCK_LEN]; local
170 aad[0] = 0; /* aad_len >> 8 */
171 aad[1] = aad_len & 0xff;
172 aad[2] = pos[0] & 0x8f;
173 aad[3] = pos[1] & 0xc7;
174 memcpy(aad + 4, hdr->addr1, 3 * ETH_ALEN);
176 aad[22] = pos[0] & 0x0f;
177 aad[23] = 0; /* all bits masked */
178 memset(aad + 24, 0, 8);
180 memcpy(aad
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/rtl8192su/ieee80211/
H A Dieee80211_crypt_ccmp.c124 u8 aad[2 * AES_BLOCK_LEN]; local
165 aad[0] = 0; /* aad_len >> 8 */
166 aad[1] = aad_len & 0xff;
167 aad[2] = pos[0] & 0x8f;
168 aad[3] = pos[1] & 0xc7;
169 memcpy(aad + 4, hdr->addr1, 3 * ETH_ALEN);
171 aad[22] = pos[0] & 0x0f;
172 aad[23] = 0; /* all bits masked */
173 memset(aad + 24, 0, 8);
175 memcpy(aad
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/rtl8192u/ieee80211/
H A Dieee80211_crypt_ccmp.c125 u8 aad[2 * AES_BLOCK_LEN]; local
167 aad[0] = 0; /* aad_len >> 8 */
168 aad[1] = aad_len & 0xff;
169 aad[2] = pos[0] & 0x8f;
170 aad[3] = pos[1] & 0xc7;
171 memcpy(aad + 4, hdr->addr1, 3 * ETH_ALEN);
173 aad[22] = pos[0] & 0x0f;
174 aad[23] = 0; /* all bits masked */
175 memset(aad + 24, 0, 8);
177 memcpy(aad
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/wireless/
H A Dlib80211_crypt_ccmp.c120 u8 aad[2 * AES_BLOCK_LEN]; local
156 aad[0] = 0; /* aad_len >> 8 */
157 aad[1] = aad_len & 0xff;
158 aad[2] = pos[0] & 0x8f;
159 aad[3] = pos[1] & 0xc7;
160 memcpy(aad + 4, hdr->addr1, 3 * ETH_ALEN);
162 aad[22] = pos[0] & 0x0f;
163 aad[23] = 0; /* all bits masked */
164 memset(aad + 24, 0, 8);
166 memcpy(aad
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/security/apparmor/include/
H A Daudit.h108 #define aad apparmor_audit_data macro
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/autoconf-lib-link/tests/
H A DMakefile.am23 rpath-2aaa rpath-2aab rpath-2aad \
27 rpath-3aaa rpath-3aab rpath-3aad \
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/mach-mx3/
H A Dclock-imx35.c153 struct arm_ahb_div *aad; local
156 aad = &clk_consumer[(pdr0 >> 16) & 0xf];
157 if (aad->sel)
160 return fref / aad->arm;
166 struct arm_ahb_div *aad; local
169 aad = &clk_consumer[(pdr0 >> 16) & 0xf];
171 return fref / aad->ahb;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/modes/
H A Dmodes.h104 int CRYPTO_gcm128_aad(GCM128_CONTEXT *ctx, const unsigned char *aad,
130 void CRYPTO_ccm128_aad(CCM128_CONTEXT *ctx, const unsigned char *aad,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/modes/
H A Dmodes.h104 int CRYPTO_gcm128_aad(GCM128_CONTEXT *ctx, const unsigned char *aad,
130 void CRYPTO_ccm128_aad(CCM128_CONTEXT *ctx, const unsigned char *aad,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/ssl/
H A Ds3_pkt.c701 unsigned char aad[13]; local
754 memcpy(aad, s->s3->write_sequence, 8);
755 aad[8] = type;
756 aad[9] = (unsigned char)(s->version >> 8);
757 aad[10] = (unsigned char)(s->version);
758 aad[11] = 0;
759 aad[12] = 0;
761 mb_param.inp = aad;

Completed in 240 milliseconds

12