Searched defs:plain (Results 1 - 25 of 90) sorted by relevance

1234

/external/v8/test/mjsunit/
H A Dregexp-not-sticky-yet.js43 var plain = /foobar/; variable
44 assertEquals("/foobar/", "" + plain);
/external/v8/test/mjsunit/harmony/
H A Dregexp-sticky.js35 var plain = /foobar/; variable
37 assertTrue(!!"foobar".match(plain));
38 assertTrue(!!"..foobar".match(plain));
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/events/
H A DImplicitTuple.java20 * if the tag may be omitted when the scalar is emitted in a plain and non-plain
26 private final boolean plain; field in class:ImplicitTuple
29 public ImplicitTuple(boolean plain, boolean nonplain) { argument
30 this.plain = plain;
36 * plain style.
39 return plain;
44 * non-plain style.
51 return !plain
[all...]
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/tokens/
H A DScalarToken.java22 private final boolean plain; field in class:ScalarToken
25 public ScalarToken(String value, Mark startMark, Mark endMark, boolean plain) { argument
26 this(value, plain, startMark, endMark, (char) 0);
29 public ScalarToken(String value, boolean plain, Mark startMark, Mark endMark, char style) { argument
32 this.plain = plain;
37 return this.plain;
50 return "value=" + value + ", plain=" + plain + ", style=" + style;
/external/webrtc/webrtc/libjingle/xmpp/
H A Dsaslmechanism.cc39 SaslMechanism::Base64Encode(const std::string & plain) { argument
40 return Base64::Encode(plain);
49 SaslMechanism::Base64EncodeFromArray(const char * plain, size_t length) { argument
51 Base64::EncodeFromArray(plain, length, &result);
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Daes-unwrap.c23 * @plain: Plaintext key, n * 64 bits
27 u8 *plain)
36 r = plain;
51 r = plain + (n - 1) * 8;
71 * These are already in @plain due to the location of temporary
26 aes_unwrap(const u8 *kek, size_t kek_len, int n, const u8 *cipher, u8 *plain) argument
H A Daes-wrap.c22 * @plain: Plaintext key to be wrapped, n * 64 bits
26 int aes_wrap(const u8 *kek, size_t kek_len, int n, const u8 *plain, u8 *cipher) argument
38 os_memcpy(r, plain, 8 * n);
H A Daes-internal-enc.c115 void aes_encrypt(void *ctx, const u8 *plain, u8 *crypt) argument
118 rijndaelEncrypt(ctx, rk[AES_PRIV_NR_POS], plain, crypt);
H A Dcrypto_internal-rsa.c113 u8 *plain, size_t *plain_len)
116 crypt, crypt_len, plain, plain_len);
111 crypto_public_key_decrypt_pkcs1(struct crypto_public_key *key, const u8 *crypt, size_t crypt_len, u8 *plain, size_t *plain_len) argument
H A Daes-ccm.c149 size_t M, const u8 *plain, size_t plain_len,
164 aes_ccm_auth(aes, plain, plain_len, x);
168 aes_ccm_encr(aes, L, plain, plain_len, crypt, a);
180 const u8 *aad, size_t aad_len, const u8 *auth, u8 *plain)
199 aes_ccm_encr(aes, L, crypt, crypt_len, plain, a);
202 aes_ccm_auth(aes, plain, crypt_len, x);
148 aes_ccm_ae(const u8 *key, size_t key_len, const u8 *nonce, size_t M, const u8 *plain, size_t plain_len, const u8 *aad, size_t aad_len, u8 *crypt, u8 *auth) argument
178 aes_ccm_ad(const u8 *key, size_t key_len, const u8 *nonce, size_t M, const u8 *crypt, size_t crypt_len, const u8 *aad, size_t aad_len, const u8 *auth, u8 *plain) argument
H A Daes-internal-dec.c150 void aes_decrypt(void *ctx, const u8 *crypt, u8 *plain) argument
153 rijndaelDecrypt(ctx, rk[AES_PRIV_NR_POS], crypt, plain);
H A Dcrypto_internal-cipher.c103 int crypto_cipher_encrypt(struct crypto_cipher *ctx, const u8 *plain, argument
110 if (plain != crypt)
111 os_memcpy(crypt, plain, len);
122 ctx->u.aes.cbc[j] ^= plain[j];
126 plain += AES_BLOCK_SIZE;
136 ctx->u.des3.cbc[j] ^= plain[j];
140 plain += 8;
150 ctx->u.des3.cbc[j] ^= plain[j];
154 plain += 8;
167 u8 *plain, size_
166 crypto_cipher_decrypt(struct crypto_cipher *ctx, const u8 *crypt, u8 *plain, size_t len) argument
[all...]
/external/wpa_supplicant_8/src/crypto/
H A Daes-unwrap.c23 * @plain: Plaintext key, n * 64 bits
27 u8 *plain)
36 r = plain;
51 r = plain + (n - 1) * 8;
71 * These are already in @plain due to the location of temporary
26 aes_unwrap(const u8 *kek, size_t kek_len, int n, const u8 *cipher, u8 *plain) argument
H A Daes-wrap.c22 * @plain: Plaintext key to be wrapped, n * 64 bits
26 int aes_wrap(const u8 *kek, size_t kek_len, int n, const u8 *plain, u8 *cipher) argument
38 os_memcpy(r, plain, 8 * n);
H A Daes-internal-enc.c115 void aes_encrypt(void *ctx, const u8 *plain, u8 *crypt) argument
118 rijndaelEncrypt(ctx, rk[AES_PRIV_NR_POS], plain, crypt);
H A Dcrypto_internal-rsa.c113 u8 *plain, size_t *plain_len)
116 crypt, crypt_len, plain, plain_len);
111 crypto_public_key_decrypt_pkcs1(struct crypto_public_key *key, const u8 *crypt, size_t crypt_len, u8 *plain, size_t *plain_len) argument
H A Daes-ccm.c149 size_t M, const u8 *plain, size_t plain_len,
164 aes_ccm_auth(aes, plain, plain_len, x);
168 aes_ccm_encr(aes, L, plain, plain_len, crypt, a);
180 const u8 *aad, size_t aad_len, const u8 *auth, u8 *plain)
199 aes_ccm_encr(aes, L, crypt, crypt_len, plain, a);
202 aes_ccm_auth(aes, plain, crypt_len, x);
148 aes_ccm_ae(const u8 *key, size_t key_len, const u8 *nonce, size_t M, const u8 *plain, size_t plain_len, const u8 *aad, size_t aad_len, u8 *crypt, u8 *auth) argument
178 aes_ccm_ad(const u8 *key, size_t key_len, const u8 *nonce, size_t M, const u8 *crypt, size_t crypt_len, const u8 *aad, size_t aad_len, const u8 *auth, u8 *plain) argument
H A Daes-internal-dec.c150 void aes_decrypt(void *ctx, const u8 *crypt, u8 *plain) argument
153 rijndaelDecrypt(ctx, rk[AES_PRIV_NR_POS], crypt, plain);
H A Dcrypto_internal-cipher.c103 int crypto_cipher_encrypt(struct crypto_cipher *ctx, const u8 *plain, argument
110 if (plain != crypt)
111 os_memcpy(crypt, plain, len);
122 ctx->u.aes.cbc[j] ^= plain[j];
126 plain += AES_BLOCK_SIZE;
136 ctx->u.des3.cbc[j] ^= plain[j];
140 plain += 8;
150 ctx->u.des3.cbc[j] ^= plain[j];
154 plain += 8;
167 u8 *plain, size_
166 crypto_cipher_decrypt(struct crypto_cipher *ctx, const u8 *crypt, u8 *plain, size_t len) argument
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Daes-unwrap.c23 * @plain: Plaintext key, n * 64 bits
27 u8 *plain)
36 r = plain;
51 r = plain + (n - 1) * 8;
71 * These are already in @plain due to the location of temporary
26 aes_unwrap(const u8 *kek, size_t kek_len, int n, const u8 *cipher, u8 *plain) argument
H A Daes-wrap.c22 * @plain: Plaintext key to be wrapped, n * 64 bits
26 int aes_wrap(const u8 *kek, size_t kek_len, int n, const u8 *plain, u8 *cipher) argument
38 os_memcpy(r, plain, 8 * n);
H A Daes-internal-enc.c115 void aes_encrypt(void *ctx, const u8 *plain, u8 *crypt) argument
118 rijndaelEncrypt(ctx, rk[AES_PRIV_NR_POS], plain, crypt);
H A Dcrypto_internal-rsa.c113 u8 *plain, size_t *plain_len)
116 crypt, crypt_len, plain, plain_len);
111 crypto_public_key_decrypt_pkcs1(struct crypto_public_key *key, const u8 *crypt, size_t crypt_len, u8 *plain, size_t *plain_len) argument
/external/wpa_supplicant_8/hostapd/src/tls/
H A Dpkcs1.c136 u8 *plain, size_t *plain_len)
142 if (crypto_rsa_exptmod(crypt, crypt_len, plain, &len, key, 0) < 0)
157 plain[0] != 0x00 || plain[1] != 0x01) {
163 pos = plain + 3;
165 if (plain[2] != 0xff) {
170 while (pos < plain + len && *pos == 0xff)
173 if (pos - plain - 2 < 8) {
180 if (pos + 16 /* min hash len */ >= plain + len || *pos != 0x00) {
186 len -= pos - plain;
134 pkcs1_decrypt_public_key(struct crypto_rsa_key *key, const u8 *crypt, size_t crypt_len, u8 *plain, size_t *plain_len) argument
[all...]
/external/wpa_supplicant_8/src/tls/
H A Dpkcs1.c136 u8 *plain, size_t *plain_len)
142 if (crypto_rsa_exptmod(crypt, crypt_len, plain, &len, key, 0) < 0)
157 plain[0] != 0x00 || plain[1] != 0x01) {
163 pos = plain + 3;
165 if (plain[2] != 0xff) {
170 while (pos < plain + len && *pos == 0xff)
173 if (pos - plain - 2 < 8) {
180 if (pos + 16 /* min hash len */ >= plain + len || *pos != 0x00) {
186 len -= pos - plain;
134 pkcs1_decrypt_public_key(struct crypto_rsa_key *key, const u8 *crypt, size_t crypt_len, u8 *plain, size_t *plain_len) argument
[all...]

Completed in 912 milliseconds

1234