Home
last modified time | relevance | path

Searched refs:Base64 (Results 1 – 25 of 50) sorted by relevance

12

/third_party/mbedtls/tests/suites/
Dtest_suite_base64.data91 Base64 decode (Illegal character)
94 Base64 decode (Too much equal signs)
97 Base64 decode (Invalid char after equal signs)
100 Base64 decode (Space inside string)
103 Base64 decode "Zm9vYmFy" (no newline nor '\0' at end)
106 Base64 decode "Zm9vYmFy\n" (LF at end)
109 Base64 decode "Zm9vYmFy\r\n" (CRLF at end)
112 Base64 decode "Zm9vYmFy\r" (CR at end)
115 Base64 decode "Zm9vYmFy " (SP at end)
118 Base64 decode "Zm9vYmFy \n" (SP+LF at end)
[all …]
/third_party/python/Doc/library/
Dbase64.rst1 :mod:`base64` --- Base16, Base32, Base64, Base85 Data Encodings
5 :synopsis: RFC 4648: Base16, Base32, Base64 Data Encodings;
19 :rfc:`4648`, which defines the Base16, Base32, and Base64 algorithms,
35 <file object>`. It only supports the Base64 standard alphabet, and it adds
53 Encode the :term:`bytes-like object` *s* using Base64 and return the encoded
59 generate URL or filesystem safe Base64 strings. The default is ``None``, for
60 which the standard Base64 alphabet is used.
65 Decode the Base64 encoded :term:`bytes-like object` or ASCII string
84 Encode :term:`bytes-like object` *s* using the standard Base64 alphabet
91 Base64 alphabet and return the decoded :class:`bytes`.
[all …]
/third_party/json/tests/thirdparty/Fuzzer/test/
DFuzzerUnittest.cpp572 TEST(FuzzerUtil, Base64) { in TEST() argument
573 EXPECT_EQ("", Base64({})); in TEST()
574 EXPECT_EQ("YQ==", Base64({'a'})); in TEST()
575 EXPECT_EQ("eA==", Base64({'x'})); in TEST()
576 EXPECT_EQ("YWI=", Base64({'a', 'b'})); in TEST()
577 EXPECT_EQ("eHk=", Base64({'x', 'y'})); in TEST()
578 EXPECT_EQ("YWJj", Base64({'a', 'b', 'c'})); in TEST()
579 EXPECT_EQ("eHl6", Base64({'x', 'y', 'z'})); in TEST()
580 EXPECT_EQ("YWJjeA==", Base64({'a', 'b', 'c', 'x'})); in TEST()
581 EXPECT_EQ("YWJjeHk=", Base64({'a', 'b', 'c', 'x', 'y'})); in TEST()
[all …]
/third_party/weex-loader/test/
Dtest.js31 const Base64 = require('js-base64').Base64; constant
58 return JSON.parse(Base64.decode(mapStr[1]));
/third_party/python/Lib/test/test_email/data/
Dmsg_10.txt22 Content-Transfer-Encoding: Base64
29 Content-Transfer-Encoding: Base64
/third_party/openssl/doc/man3/
DBIO_f_base64.pod22 Base64 BIOs do not support BIO_gets() or BIO_puts().
55 Base64 encode the string "Hello World\n" and write the result
69 Read Base64 encoded data from standard input and write the decoded
/third_party/node/tools/
Dmk-ca-bundle.pl35 use MIME::Base64;
266 my $encoded = MIME::Base64::encode_base64($data, '');
/third_party/curl/tests/server/
Dbase64.pl26 use MIME::Base64 qw(encode_base64);
/third_party/qrcodegen/java/src/main/java/io/nayuki/qrcodegen/
DQrSegmentAdvanced.java29 import java.util.Base64;
416 byte[] bytes = Base64.getDecoder().decode(PACKED_QR_KANJI_TO_UNICODE);
/third_party/qrcodegen/java-fast/io/nayuki/fastqrcodegen/
DQrSegmentAdvanced.java29 import java.util.Base64;
408 byte[] bytes = Base64.getDecoder().decode(PACKED_QR_KANJI_TO_UNICODE);
/third_party/curl/docs/cmdline-opts/
Dhostpubsha256.md19 Pass a string containing a Base64-encoded SHA256 hash of the remote host's
/third_party/curl/tests/
Dtestutil.pm51 use MIME::Base64;
Dgetpart.pm47 use MIME::Base64;
/third_party/json/tests/thirdparty/Fuzzer/
DFuzzerUtil.h36 std::string Base64(const Unit &U);
DFuzzerUtil.cpp154 std::string Base64(const Unit &U) { in Base64() function
/third_party/curl/scripts/
Dmk-ca-bundle.pl37 use MIME::Base64;
645 my $encoded = MIME::Base64::encode_base64($cka_value, '');
/third_party/jsframework/runtime/main/extend/systemplugin/napi/
Dohos_util.js279 const Base64Class = class Base64 { class
534 Base64 : Base64Class, property
/third_party/curl/docs/libcurl/opts/
DCURLOPT_SSH_HOST_PUBLIC_KEY_SHA256.md28 Pass a char pointer pointing to a string containing a Base64-encoded SHA256
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
Descaping_test.cc616 TEST(Base64, EscapeAndUnescape) { in TEST() argument
620 TEST(Base64, DISABLED_HugeData) { in TEST() argument
/third_party/openssl/test/
Dcms-examples.pl12 use MIME::Base64;
/third_party/lzma/CPP/7zip/
DGuid.txt185 C5 Base64
/third_party/openssl/test/recipes/30-test_evp_data/
Devpencod.txt14 Title = Base64 tests
/third_party/node/deps/base64/base64/
DREADME.md1 # Fast Base64 stream encoder/decoder
36 Base64 library to offer SIMD acceleration. The author wrote
38 possible SIMD approach to encoding/decoding Base64. The article can help figure
/third_party/openssl/doc/man1/
Dopenssl-enc.pod.in50 or explicitly provided. Base64 encoding or decoding can also be performed
96 Base64 process the data. This means that if encryption is taking place
429 Base64 decode a file then decrypt it using a password supplied in a file:
/third_party/openssl/test/recipes/
D90-test_store.t11 use MIME::Base64;

12