/external/snakeyaml/src/main/java/org/yaml/snakeyaml/events/ |
H A D | ImplicitTuple.java | 20 * 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/mesa3d/src/gallium/auxiliary/util/ |
H A D | u_format.csv | 36 # - channel encoding (only meaningful for plain layout), containing for each 62 PIPE_FORMAT_NONE , plain, 1, 1, u8 , , , , x001, rgb 65 PIPE_FORMAT_B8G8R8A8_UNORM , plain, 1, 1, un8 , un8 , un8 , un8 , zyxw, rgb 66 PIPE_FORMAT_B8G8R8X8_UNORM , plain, 1, 1, un8 , un8 , un8 , x8 , zyx1, rgb 67 PIPE_FORMAT_A8R8G8B8_UNORM , plain, 1, 1, un8 , un8 , un8 , un8 , yzwx, rgb 68 PIPE_FORMAT_X8R8G8B8_UNORM , plain, 1, 1, x8 , un8 , un8 , un8 , yzw1, rgb 69 PIPE_FORMAT_A8B8G8R8_UNORM , plain, 1, 1, un8 , un8 , un8 , un8 , wzyx, rgb 70 PIPE_FORMAT_X8B8G8R8_UNORM , plain, 1, 1, x8 , un8 , un8 , un8 , wzy1, rgb 72 PIPE_FORMAT_R8G8B8X8_UNORM , plain, 1, 1, un8 , un8 , un8 , x8 , xyz1, rgb 73 PIPE_FORMAT_B5G5R5X1_UNORM , plain, [all...] |
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/tokens/ |
H A D | ScalarToken.java | 22 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/fonttools/Lib/fontTools/misc/ |
H A D | eexec.py | 10 plain = ( (cipher ^ (R>>8)) ) & 0xFF 12 return bytechr(plain), R 14 def _encryptChar(plain, R): 15 plain = byteord(plain) 16 cipher = ( (plain ^ (R>>8)) ) & 0xFF 24 plain, R = _decryptChar(cipher, R) 25 plainList.append(plain) 31 for plain in plainstring: 32 cipher, R = _encryptChar(plain, [all...] |
/external/fonttools/Tools/fontTools/misc/ |
H A D | eexec.py | 10 plain = ( (cipher ^ (R>>8)) ) & 0xFF 12 return bytechr(plain), R 14 def _encryptChar(plain, R): 15 plain = byteord(plain) 16 cipher = ( (plain ^ (R>>8)) ) & 0xFF 24 plain, R = _decryptChar(cipher, R) 25 plainList.append(plain) 31 for plain in plainstring: 32 cipher, R = _encryptChar(plain, [all...] |
/external/wpa_supplicant_8/hostapd/src/crypto/ |
H A D | des_i.h | 18 void des_block_encrypt(const u8 *plain, const u32 *ek, u8 *crypt); 19 void des_block_decrypt(const u8 *crypt, const u32 *dk, u8 *plain); 22 void des3_encrypt(const u8 *plain, const struct des3_key_s *key, u8 *crypt); 23 void des3_decrypt(const u8 *crypt, const struct des3_key_s *key, u8 *plain);
|
H A D | aes.h | 15 void aes_encrypt(void *ctx, const u8 *plain, u8 *crypt); 18 void aes_decrypt(void *ctx, const u8 *crypt, u8 *plain);
|
H A D | crypto_internal-cipher.c | 103 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...] |
H A D | aes-unwrap.c | 23 * @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 D | aes-wrap.c | 22 * @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);
|
/external/wpa_supplicant_8/src/crypto/ |
H A D | des_i.h | 18 void des_block_encrypt(const u8 *plain, const u32 *ek, u8 *crypt); 19 void des_block_decrypt(const u8 *crypt, const u32 *dk, u8 *plain); 22 void des3_encrypt(const u8 *plain, const struct des3_key_s *key, u8 *crypt); 23 void des3_decrypt(const u8 *crypt, const struct des3_key_s *key, u8 *plain);
|
H A D | aes.h | 15 void aes_encrypt(void *ctx, const u8 *plain, u8 *crypt); 18 void aes_decrypt(void *ctx, const u8 *crypt, u8 *plain);
|
H A D | crypto_internal-cipher.c | 103 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...] |
H A D | aes-unwrap.c | 23 * @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 D | aes-wrap.c | 22 * @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);
|
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/ |
H A D | des_i.h | 18 void des_block_encrypt(const u8 *plain, const u32 *ek, u8 *crypt); 19 void des_block_decrypt(const u8 *crypt, const u32 *dk, u8 *plain); 22 void des3_encrypt(const u8 *plain, const struct des3_key_s *key, u8 *crypt); 23 void des3_decrypt(const u8 *crypt, const struct des3_key_s *key, u8 *plain);
|
H A D | aes.h | 15 void aes_encrypt(void *ctx, const u8 *plain, u8 *crypt); 18 void aes_decrypt(void *ctx, const u8 *crypt, u8 *plain);
|
H A D | crypto_internal-cipher.c | 103 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...] |
H A D | aes-unwrap.c | 23 * @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 D | aes-wrap.c | 22 * @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);
|
/external/webrtc/webrtc/libjingle/xmpp/ |
H A D | saslmechanism.cc | 39 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);
|
H A D | saslmechanism.h | 50 static std::string Base64Encode(const std::string & plain); 52 static std::string Base64EncodeFromArray(const char * plain, size_t length);
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
H A D | output_text.properties | 26 media-type=text/plain
|
/external/wpa_supplicant_8/hs20/server/ca/ |
H A D | ocsp-responder-ica.sh | 3 openssl ocsp -index demoCA/index.txt -port 8888 -nmin 5 -rsigner demoCA/cacert.pem -rkey demoCA/private/cakey-plain.pem -CA demoCA/cacert.pem -resp_no_certs -text
|
/external/openssh/ |
H A D | cipher-aes.c | 76 u_char *cprev, *cnow, *plain, *ivp; local 89 plain = (u_char *)src; 91 for (i = 0; i < blocks; i++, plain+=RIJNDAEL_BLOCKSIZE, 94 buf[j] = plain[j] ^ cprev[j]; 101 plain = dest+len-RIJNDAEL_BLOCKSIZE; 105 plain-=RIJNDAEL_BLOCKSIZE) { 106 rijndael_decrypt(&c->r_ctx, cnow, plain); 109 plain[j] ^= ivp[j];
|