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

1234

/macosx-10.9.5/ruby-104/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.9.5/apache-786.1/httpd/support/SHA1/
H A Dhtpasswd-sha1.pl16 use MIME::Base64; # http://www.cpan.org/modules/by-module/MIME/
/macosx-10.9.5/curl-78.94.1/curl/tests/server/
H A Dbase64.pl3 use MIME::Base64 qw(encode_base64);
/macosx-10.9.5/ruby-104/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.9.5/OpenLDAP-491.1/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.9.5/OpenSSH-186/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.9.5/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.9.5/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.9.5/libresolv-54/
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.9.5/CPANInternal-140/SOAP-Lite-0.715/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.9.5/CPANInternal-140/SOAP-Lite_new/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.9.5/ruby-104/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.9.5/CPANInternal-140/Pod-ProjectDocs/lib/Pod/ProjectDocs/
H A DArrowImage.pm5 use MIME::Base64;
/macosx-10.9.5/CPANInternal-140/Pod-ProjectDocs-0.40/lib/Pod/ProjectDocs/
H A DArrowImage.pm5 use MIME::Base64;
/macosx-10.9.5/CPANInternal-140/HTTP-Proxy/eg/
H A Dproxy-auth.pl4 use MIME::Base64 qw( encode_base64 );
/macosx-10.9.5/CPANInternal-140/HTTP-Proxy-0.25/eg/
H A Dproxy-auth.pl4 use MIME::Base64 qw( encode_base64 );
/macosx-10.9.5/WebCore-7537.78.1/platform/network/
H A DMIMEHeader.h48 Base64, enumerator in enum:WebCore::MIMEHeader::Encoding
/macosx-10.9.5/CPANInternal-140/Perl-Ldap/lib/Net/LDAP/
H A DLDIF.pm201 eval { require MIME::Base64 };
206 $dn = MIME::Base64::decode($dn);
262 eval { require MIME::Base64 };
267 $line = MIME::Base64::decode($line);
318 eval { require MIME::Base64 };
323 $line = MIME::Base64::decode($line);
406 require MIME::Base64;
407 $ln .= ":: " . MIME::Base64::encode($v,"");
449 require MIME::Base64;
450 $dn = "dn:: " . MIME::Base64
[all...]
/macosx-10.9.5/CPANInternal-140/Net-DNS/lib/Net/DNS/RR/
H A DCERT.pm13 use MIME::Base64;
81 $self->{"certificate"} = MIME::Base64::decode(join('', @rest));
92 my $cert = MIME::Base64::encode $self->{certificate};
/macosx-10.9.5/CPANInternal-140/Data-Dump/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.9.5/CPANInternal-140/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.9.5/curl-78.94.1/curl/lib/
H A Dmk-ca-bundle.pl34 use MIME::Base64;
57 print "MIME::Base64.pm Version : ${MIME::Base64::VERSION}\n";
195 my $encoded = MIME::Base64::encode_base64($data, '');
/macosx-10.9.5/CPANInternal-140/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);

Completed in 248 milliseconds

1234