Home
last modified time | relevance | path

Searched full:plain (Results 151 - 175 of 2528) sorted by relevance

12345678910>>...102

/third_party/python/Lib/test/test_email/data/
H A Dmsg_13.txt9 Content-Type: text/plain; charset="us-ascii"
11 A text/plain part
18 Content-Type: text/plain; charset="us-ascii"
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/
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) in aes_wrap() argument
38 os_memcpy(r, plain, 8 * n); in aes_wrap()
H A Dcrypto_linux.c503 int aes_encrypt(void *ctx, const u8 *plain, u8 *crypt) in aes_encrypt() argument
507 return linux_af_alg_skcipher_oper(skcipher, 1, plain, crypt); in aes_encrypt()
523 int aes_decrypt(void *ctx, const u8 *crypt, u8 *plain) in aes_decrypt() argument
527 return linux_af_alg_skcipher_oper(skcipher, 0, crypt, plain); in aes_decrypt()
785 u8 *plain) in aes_unwrap()
833 ret = read(skcipher->t, plain, n * 8); in aes_unwrap()
978 int crypto_cipher_encrypt(struct crypto_cipher *ctx, const u8 *plain, in crypto_cipher_encrypt() argument
981 return crypto_cipher_oper(ctx, ALG_OP_ENCRYPT, plain, crypt, len); in crypto_cipher_encrypt()
986 u8 *plain, size_t len) in crypto_cipher_decrypt()
988 return crypto_cipher_oper(ctx, ALG_OP_DECRYPT, crypt, plain, le in crypto_cipher_decrypt()
784 aes_unwrap(const u8 *kek, size_t kek_len, int n, const u8 *cipher, u8 *plain) aes_unwrap() argument
985 crypto_cipher_decrypt(struct crypto_cipher *ctx, const u8 *crypt, u8 *plain, size_t len) crypto_cipher_decrypt() argument
[all...]
H A Dcrypto_wolfssl.c328 int aes_encrypt(void *ctx, const u8 *plain, u8 *crypt) in aes_encrypt() argument
330 wc_AesEncryptDirect(ctx, crypt, plain); in aes_encrypt()
361 int aes_decrypt(void *ctx, const u8 *crypt, u8 *plain) in aes_decrypt() argument
363 wc_AesDecryptDirect(ctx, plain, crypt); in aes_decrypt()
412 int aes_wrap(const u8 *kek, size_t kek_len, int n, const u8 *plain, u8 *cipher) in aes_wrap() argument
419 ret = wc_AesKeyWrap(kek, kek_len, plain, n * 8, cipher, (n + 1) * 8, in aes_wrap()
426 u8 *plain) in aes_unwrap()
433 ret = wc_AesKeyUnWrap(kek, kek_len, cipher, (n + 1) * 8, plain, n * 8, in aes_unwrap()
544 int crypto_cipher_encrypt(struct crypto_cipher *ctx, const u8 *plain, in crypto_cipher_encrypt() argument
551 wc_Arc4Process(&ctx->enc.arc4, crypt, plain, le in crypto_cipher_encrypt()
425 aes_unwrap(const u8 *kek, size_t kek_len, int n, const u8 *cipher, u8 *plain) aes_unwrap() argument
574 crypto_cipher_decrypt(struct crypto_cipher *ctx, const u8 *crypt, u8 *plain, size_t len) crypto_cipher_decrypt() argument
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/
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) in aes_wrap() argument
38 os_memcpy(r, plain, 8 * n); in aes_wrap()
H A Dcrypto_linux.c503 int aes_encrypt(void *ctx, const u8 *plain, u8 *crypt) in aes_encrypt() argument
507 return linux_af_alg_skcipher_oper(skcipher, 1, plain, crypt); in aes_encrypt()
523 int aes_decrypt(void *ctx, const u8 *crypt, u8 *plain) in aes_decrypt() argument
527 return linux_af_alg_skcipher_oper(skcipher, 0, crypt, plain); in aes_decrypt()
785 u8 *plain) in aes_unwrap()
833 ret = read(skcipher->t, plain, n * 8); in aes_unwrap()
978 int crypto_cipher_encrypt(struct crypto_cipher *ctx, const u8 *plain, in crypto_cipher_encrypt() argument
981 return crypto_cipher_oper(ctx, ALG_OP_ENCRYPT, plain, crypt, len); in crypto_cipher_encrypt()
986 u8 *plain, size_t len) in crypto_cipher_decrypt()
988 return crypto_cipher_oper(ctx, ALG_OP_DECRYPT, crypt, plain, le in crypto_cipher_decrypt()
784 aes_unwrap(const u8 *kek, size_t kek_len, int n, const u8 *cipher, u8 *plain) aes_unwrap() argument
985 crypto_cipher_decrypt(struct crypto_cipher *ctx, const u8 *crypt, u8 *plain, size_t len) crypto_cipher_decrypt() argument
[all...]
H A Dcrypto_wolfssl.c328 int aes_encrypt(void *ctx, const u8 *plain, u8 *crypt) in aes_encrypt() argument
330 wc_AesEncryptDirect(ctx, crypt, plain); in aes_encrypt()
361 int aes_decrypt(void *ctx, const u8 *crypt, u8 *plain) in aes_decrypt() argument
363 wc_AesDecryptDirect(ctx, plain, crypt); in aes_decrypt()
412 int aes_wrap(const u8 *kek, size_t kek_len, int n, const u8 *plain, u8 *cipher) in aes_wrap() argument
419 ret = wc_AesKeyWrap(kek, kek_len, plain, n * 8, cipher, (n + 1) * 8, in aes_wrap()
426 u8 *plain) in aes_unwrap()
433 ret = wc_AesKeyUnWrap(kek, kek_len, cipher, (n + 1) * 8, plain, n * 8, in aes_unwrap()
544 int crypto_cipher_encrypt(struct crypto_cipher *ctx, const u8 *plain, in crypto_cipher_encrypt() argument
551 wc_Arc4Process(&ctx->enc.arc4, crypt, plain, le in crypto_cipher_encrypt()
425 aes_unwrap(const u8 *kek, size_t kek_len, int n, const u8 *cipher, u8 *plain) aes_unwrap() argument
574 crypto_cipher_decrypt(struct crypto_cipher *ctx, const u8 *crypt, u8 *plain, size_t len) crypto_cipher_decrypt() argument
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/wps/
H A Dwps_common.c360 struct wpabuf *plain; in wps_get_oob_cred() local
362 plain = wpabuf_alloc(500); in wps_get_oob_cred()
363 if (plain == NULL) { in wps_get_oob_cred()
373 if (wps_build_cred(&data, plain) || in wps_get_oob_cred()
374 (rf_band && wps_build_rf_bands_attr(plain, rf_band)) || in wps_get_oob_cred()
375 (channel && wps_build_ap_channel(plain, channel)) || in wps_get_oob_cred()
376 wps_build_mac_addr(plain, wps->dev.mac_addr) || in wps_get_oob_cred()
377 wps_build_wfa_ext(plain, 0, NULL, 0, 0)) { in wps_get_oob_cred()
379 wpabuf_clear_free(plain); in wps_get_oob_cred()
408 return plain; in wps_get_oob_cred()
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/wps/
H A Dwps_common.c360 struct wpabuf *plain; in wps_get_oob_cred() local
362 plain = wpabuf_alloc(500); in wps_get_oob_cred()
363 if (plain == NULL) { in wps_get_oob_cred()
373 if (wps_build_cred(&data, plain) || in wps_get_oob_cred()
374 (rf_band && wps_build_rf_bands_attr(plain, rf_band)) || in wps_get_oob_cred()
375 (channel && wps_build_ap_channel(plain, channel)) || in wps_get_oob_cred()
376 wps_build_mac_addr(plain, wps->dev.mac_addr) || in wps_get_oob_cred()
377 wps_build_wfa_ext(plain, 0, NULL, 0, 0)) { in wps_get_oob_cred()
379 wpabuf_clear_free(plain); in wps_get_oob_cred()
408 return plain; in wps_get_oob_cred()
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DRelativeDateTimeFormatter.java66 * fmt.format(Direction.PLAIN, AbsoluteUnit.SUNDAY); // "Sunday"
72 * fmt.format(Direction.PLAIN, AbsoluteUnit.NOW); // "now"
303 * Plain, which means the absence of a qualifier
306 PLAIN, enum constant
798 * unit this can occur with NOW which can only take PLAIN.
818 * unit this can occur with NOW which can only take PLAIN.
834 if (unit == AbsoluteUnit.NOW && direction != Direction.PLAIN) { in formatAbsoluteImpl()
835 throw new IllegalArgumentException("NOW can only accept direction PLAIN."); in formatAbsoluteImpl()
838 // Get plain day of week names from DateFormatSymbols. in formatAbsoluteImpl()
839 if ((direction == Direction.PLAIN) in formatAbsoluteImpl()
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DRelativeDateTimeFormatter.java67 * fmt.format(Direction.PLAIN, AbsoluteUnit.SUNDAY); // "Sunday"
73 * fmt.format(Direction.PLAIN, AbsoluteUnit.NOW); // "now"
270 * Plain, which means the absence of a qualifier
272 PLAIN, enum constant
716 * unit this can occur with NOW which can only take PLAIN.
735 * unit this can occur with NOW which can only take PLAIN.
750 if (unit == AbsoluteUnit.NOW && direction != Direction.PLAIN) { in formatAbsoluteImpl()
751 throw new IllegalArgumentException("NOW can only accept direction PLAIN."); in formatAbsoluteImpl()
754 // Get plain day of week names from DateFormatSymbols. in formatAbsoluteImpl()
755 if ((direction == Direction.PLAIN) in formatAbsoluteImpl()
[all...]
/third_party/python/Doc/library/
H A Demail.compat32-message.rst254 will be added with a value of :mimetype:`text/plain`. Whether the
438 :rfc:`2045` defines a message's default type to be :mimetype:`text/plain`
442 :rfc:`2045` mandates that the default type be :mimetype:`text/plain`.
460 type of :mimetype:`text/plain`, except for messages that are subparts of
468 :mimetype:`text/plain` or :mimetype:`message/rfc822`, although this is not
537 for this message, it will be set to :mimetype:`text/plain` and the new
678 text/plain
680 text/plain
681 text/plain
683 text/plain
[all...]
/base/security/asset/test/unittest/module_test/src/
H A Dhuks_wrapper_test.cpp107 uint8_t plain[6 + TAG_SIZE + NONCE_SIZE] = { 0 }; in HWTEST_F() local
108 struct HksBlob outData = { 6 + TAG_SIZE + NONCE_SIZE, plain }; in HWTEST_F()
132 uint8_t plain[6 + TAG_SIZE + NONCE_SIZE] = { 0 }; in HWTEST_F() local
133 struct HksBlob outData = { 6 + TAG_SIZE + NONCE_SIZE, plain }; in HWTEST_F()
/base/security/huks/test/unittest/huks_standard_test/three_stage_test/src/
H A Dhks_sm4_cipher_test_common.cpp96 uint8_t plain[SM4_COMMON_SIZE] = {0}; in HksSm4CipherTestCaseOther() local
97 struct HksBlob plainText = { SM4_COMMON_SIZE, plain }; in HksSm4CipherTestCaseOther()
160 uint8_t plain[SM4_COMMON_SIZE] = {0}; in HksSm4CipherTestCaseGcm() local
161 struct HksBlob plainText = { SM4_COMMON_SIZE, plain }; in HksSm4CipherTestCaseGcm()
/test/xts/acts/security/huks/huks_napi_BasicTest/src/
H A Dhuks_cipher_aes_test_common.cpp98 uint8_t plain[AES_COMMON_SIZE] = {0}; in HksAesCipherTestCaseOther() local
99 struct OH_Huks_Blob plainText = {AES_COMMON_SIZE, plain}; in HksAesCipherTestCaseOther()
147 uint8_t plain[AES_COMMON_SIZE] = {0}; in HksAesCipherTestCaseGcm2() local
148 struct OH_Huks_Blob plainText = {AES_COMMON_SIZE, plain}; in HksAesCipherTestCaseGcm2()
/third_party/curl/tests/data/
H A Dtest55494 Content-Type: text/plain
99 Content-Type: text/plain
125 Content-Type: text/plain
130 Content-Type: text/plain
/third_party/node/test/parallel/
H A Dtest-http-chunk-extensions-limit.js17 res.writeHead(200, { 'Content-Type': 'text/plain' });
52 res.writeHead(200, { 'Content-Type': 'text/plain' });
94 res.writeHead(200, { 'content-type': 'text/plain', 'connection': 'close', 'date': 'now' });
112 'content-type: text/plain\r\n' +
H A Dtest-http-generic-streams.js12 res.setHeader('Content-Type', 'text/plain');
36 res.setHeader('Content-Type', 'text/plain');
74 res.setHeader('Content-Type', 'text/plain');
112 res.setHeader('Content-Type', 'text/plain');
/third_party/openssl/test/
H A Dideatest.c45 static const unsigned char plain[CFB_TEST_SIZE] = { variable
100 IDEA_cfb64_encrypt(plain, cfb_buf1, (long)12, &eks, in test_idea_cfb64()
102 IDEA_cfb64_encrypt(&plain[12], &cfb_buf1[12], in test_idea_cfb64()
114 return TEST_mem_eq(plain, CFB_TEST_SIZE, cfb_buf2, CFB_TEST_SIZE); in test_idea_cfb64()
/third_party/vk-gl-cts/external/openglcts/modules/gl/
H A Dgl4cTextureGatherTests.cpp3526 addChild(new TestSubcase(m_context, "plain-gather-float-2d-rgba", TestSubcase::Create<PlainGatherFloat2DRgba>)); in init()
3527 addChild(new TestSubcase(m_context, "plain-gather-float-2d-rg", TestSubcase::Create<PlainGatherFloat2DRg>)); in init()
3528 addChild(new TestSubcase(m_context, "plain-gather-unorm-2d", TestSubcase::Create<PlainGatherUnorm2D>)); in init()
3529 addChild(new TestSubcase(m_context, "plain-gather-int-2d-rgba", TestSubcase::Create<PlainGatherInt2DRgba>)); in init()
3530 addChild(new TestSubcase(m_context, "plain-gather-int-2d-rg", TestSubcase::Create<PlainGatherInt2DRg>)); in init()
3531 addChild(new TestSubcase(m_context, "plain-gather-uint-2d", TestSubcase::Create<PlainGatherUint2D>)); in init()
3532 addChild(new TestSubcase(m_context, "plain-gather-depth-2d", TestSubcase::Create<PlainGatherDepth2D>)); in init()
3533 addChild(new TestSubcase(m_context, "plain-gather-float-2darray", TestSubcase::Create<PlainGatherFloat2DArray>)); in init()
3534 addChild(new TestSubcase(m_context, "plain-gather-unorm-2darray", TestSubcase::Create<PlainGatherUnorm2DArray>)); in init()
3535 addChild(new TestSubcase(m_context, "plain in init()
[all...]
/third_party/ffmpeg/libavcodec/
H A Dvaapi_h264.c176 * VA API requires a plain prediction weight table as it does not infer
181 * @param[out] luma_weight_flag VA API plain luma weight flag
182 * @param[out] luma_weight VA API plain luma weight table
183 * @param[out] luma_offset VA API plain luma offset table
184 * @param[out] chroma_weight_flag VA API plain chroma weight flag
185 * @param[out] chroma_weight VA API plain chroma weight table
186 * @param[out] chroma_offset VA API plain chroma offset table
/third_party/node/test/fixtures/wpt/FileAPI/blob/
H A DBlob-constructor.html75 desc: "A plain object with @@iterator should be treated as a sequence for the blobParts argument."
90 }, "A plain object with custom @@iterator should be treated as a sequence for the blobParts argument.");
100 desc: "A plain object with @@iterator and a length property should be treated as a sequence for the blobParts argument."
479 [[], 'text/plain;charset=utf-8', 'text/plain;charset=utf-8'],
490 [[0x00, 0xFF], 'text/plain', 'text/plain'],
/third_party/mesa3d/src/gallium/tools/trace/
H A Dpytracediff.py294 help="Gallium trace XML filename (plain or .gz, .bz2)")
299 help="Gallium trace XML filename (plain or .gz, .bz2)")
301 optparser.add_argument("-p", "--plain",
302 dest="plain",
395 if options.plain:
450 # Highlight differing lines if not plain
451 if not options.plain and line1 != line2:
/third_party/PyYAML/tests/data/
H A Dspec-08-12.data6 !!str , # Empty plain scalar
7 '', # Empty plain scalar
/third_party/libabigail/tests/data/test-diff-filter/
H A Dtest-PR26739-v1.c1 typedef int plain[7]; typedef
2 typedef const plain monster;

Completed in 25 milliseconds

12345678910>>...102