Searched refs:Base64 (Results 1 - 25 of 64) sorted by relevance

123

/macosx-10.10/ruby-106/ruby/test/base64/
H A Dtest_base64.rb7 assert_equal("U2VuZCByZWluZm9yY2VtZW50cw==\n", Base64.encode64('Send reinforcements'))
8 assert_equal('Send reinforcements', Base64.decode64("U2VuZCByZWluZm9yY2VtZW50cw==\n"))
11 Base64.encode64("Now is the time for all good coders\nto learn Ruby"))
14 Base64.decode64("Tm93IGlzIHRoZSB0aW1lIGZvciBhbGwgZ29vZCBjb2RlcnMKdG8gbGVhcm4g\nUnVieQ==\n"))
17 Base64.encode64("This is line one\nThis is line two\nThis is line three\nAnd so on...\n"))
20 Base64.decode64("VGhpcyBpcyBsaW5lIG9uZQpUaGlzIGlzIGxpbmUgdHdvClRoaXMgaXMgbGluZSB0aHJlZQpBbmQgc28gb24uLi4K"))
24 assert_equal("", Base64.encode64(""))
25 assert_equal("AA==\n", Base64.encode64("\0"))
26 assert_equal("AAA=\n", Base64.encode64("\0\0"))
27 assert_equal("AAAA\n", Base64
[all...]
/macosx-10.10/apache-793/httpd/support/SHA1/
H A Dhtpasswd-sha1.pl16 use MIME::Base64; # http://www.cpan.org/modules/by-module/MIME/
/macosx-10.10/curl-83.1.2/curl/tests/server/
H A Dbase64.pl3 use MIME::Base64 qw(encode_base64);
/macosx-10.10/ruby-106/ruby/lib/xmlrpc/
H A Dbase64.rb12 # You can use XMLRPC::Base64 on the client and server-side as a
14 class Base64 class in class:XMLRPC
16 # Creates a new XMLRPC::Base64 instance with string +str+ as the
24 @str = Base64.decode(str)
39 Base64.encode(@str)
44 def Base64.decode(str)
49 def Base64.encode(str)
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/libraries/liblutil/
H A Dbase64.c33 /* This work is based upon Base64 routines (developed by IBM) found
50 static const char Base64[] = variable
73 Table 1: The Base64 Alphabet
146 target[datalength++] = Base64[output[0]];
147 target[datalength++] = Base64[output[1]];
148 target[datalength++] = Base64[output[2]];
149 target[datalength++] = Base64[output[3]];
168 target[datalength++] = Base64[output[0]];
169 target[datalength++] = Base64[output[1]];
173 target[datalength++] = Base64[outpu
[all...]
/macosx-10.10/OpenSSH-189/openssh/openbsd-compat/
H A Dbase64.c65 static const char Base64[] = variable
88 Table 1: The Base64 Alphabet
154 target[datalength++] = Base64[output[0]];
155 target[datalength++] = Base64[output[1]];
156 target[datalength++] = Base64[output[2]];
157 target[datalength++] = Base64[output[3]];
173 target[datalength++] = Base64[output[0]];
174 target[datalength++] = Base64[output[1]];
178 target[datalength++] = Base64[output[2]];
213 pos = strchr(Base64, c
[all...]
/macosx-10.10/basic_cmds-55/uudecode/
H A Dbase64.c64 static const char Base64[] = variable
87 Table 1: The Base64 Alphabet
155 target[datalength++] = Base64[output[0]];
156 target[datalength++] = Base64[output[1]];
157 target[datalength++] = Base64[output[2]];
158 target[datalength++] = Base64[output[3]];
177 target[datalength++] = Base64[output[0]];
178 target[datalength++] = Base64[output[1]];
182 target[datalength++] = Base64[output[2]];
216 pos = strchr(Base64, c
[all...]
/macosx-10.10/basic_cmds-55/uuencode/
H A Dbase64.c64 static const char Base64[] = variable
87 Table 1: The Base64 Alphabet
155 target[datalength++] = Base64[output[0]];
156 target[datalength++] = Base64[output[1]];
157 target[datalength++] = Base64[output[2]];
158 target[datalength++] = Base64[output[3]];
177 target[datalength++] = Base64[output[0]];
178 target[datalength++] = Base64[output[1]];
182 target[datalength++] = Base64[output[2]];
216 pos = strchr(Base64, c
[all...]
/macosx-10.10/libresolv-57/
H A Dbase64.c73 static const char Base64[] = variable
96 Table 1: The Base64 Alphabet
164 target[datalength++] = Base64[output[0]];
165 target[datalength++] = Base64[output[1]];
166 target[datalength++] = Base64[output[2]];
167 target[datalength++] = Base64[output[3]];
186 target[datalength++] = Base64[output[0]];
187 target[datalength++] = Base64[output[1]];
191 target[datalength++] = Base64[output[2]];
225 pos = strchr(Base64, c
[all...]
/macosx-10.10/CPANInternal-159.1/SOAP-Lite-1.11/lib/SOAP/Lite/Deserializer/
H A DXMLSchemaSOAP1_1.pm16 sub as_base64 { shift; require MIME::Base64; MIME::Base64::decode_base64(shift) }
H A DXMLSchemaSOAP1_2.pm7 sub as_base64 { shift; require MIME::Base64; MIME::Base64::decode_base64(shift) }
/macosx-10.10/ruby-106/ruby/lib/
H A Dbase64.rb5 # The Base64 module provides for the encoding (#encode64, #strict_encode64,
7 # #urlsafe_decode64) of binary data using a Base64 representation.
15 # enc = Base64.encode64('Send reinforcements')
17 # plain = Base64.decode64(enc)
23 module Base64 module
26 # Returns the Base64-encoded version of +bin+.
31 # Base64.encode64("Now is the time for all good coders\nto learn Ruby")
41 # Returns the Base64-decoded version of +str+.
49 # puts Base64.decode64(str)
61 # Returns the Base64
[all...]
/macosx-10.10/CPANInternal-159.1/Pod-ProjectDocs-0.40/lib/Pod/ProjectDocs/
H A DArrowImage.pm5 use MIME::Base64;
/macosx-10.10/CPANInternal-159.1/HTTP-Proxy-0.25/eg/
H A Dproxy-auth.pl4 use MIME::Base64 qw( encode_base64 );
H A Ddragon.pl6 use MIME::Base64;
/macosx-10.10/CPANInternal-159.1/HTTP-Proxy-0.300/eg/
H A Dproxy-auth.pl4 use MIME::Base64 qw( encode_base64 );
H A Ddragon.pl6 use MIME::Base64;
/macosx-10.10/WebCore-7600.1.25/platform/network/
H A DMIMEHeader.h48 Base64, enumerator in enum:WebCore::MIMEHeader::Encoding
H A DDataURL.cpp36 #include <wtf/text/Base64.h>
/macosx-10.10/CPANInternal-159.1/Data-Dump-1.21/t/
H A Dquote.t23 if (eval { require MIME::Base64 }) {
25 ok(dump(join("", map chr($_), 0..255)), "do {\n require MIME::Base64;\n MIME::Base64::decode(\"AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWltcXV5fYGFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6e3x9fn+AgYKDhIWGh4iJiouMjY6PkJGSk5SVlpeYmZqbnJ2en6ChoqOkpaanqKmqq6ytrq+wsbKztLW2t7i5uru8vb6/wMHCw8TFxsfIycrLzM3Oz9DR0tPU1dbX2Nna29zd3t/g4eLj5OXm5+jp6uvs7e7v8PHy8/T19vf4+fr7/P3+/w==\");\n}");
28 skip("MIME::Base64 missing", 1);
/macosx-10.10/CPANInternal-159.1/Class-Trigger-0.14/inc/Test/Base/
H A DFilter.pm83 require MIME::Base64;
84 MIME::Base64::decode_base64(shift);
89 require MIME::Base64;
90 MIME::Base64::encode_base64(shift);
/macosx-10.10/WebCore-7600.1.25/platform/graphics/wince/
H A DFontCustomPlatformData.cpp30 #include <wtf/text/Base64.h>
/macosx-10.10/WebCore-7600.1.25/platform/graphics/win/
H A DFontCustomPlatformData.cpp30 #include <wtf/text/Base64.h>
H A DFontCustomPlatformDataCairo.cpp30 #include <wtf/text/Base64.h>
/macosx-10.10/WebCore-7600.1.25/platform/win/
H A DSSLKeyGeneratorWin.cpp23 #include <wtf/text/Base64.h>

Completed in 162 milliseconds

123