Searched refs:base64 (Results 1 - 12 of 12) sorted by relevance

/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/MIME/Base64/t/
H A Dwarn.t67 Premature end of base64 data at $0 line 33.
68 Premature padding of base64 data at $0 line 34.
70 Premature end of base64 data at $0 line 38.
71 Premature padding of base64 data at $0 line 42.
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/MIME/Base64/
H A DBase64.pm26 MIME::Base64 - Encoding and decoding of base64 strings
38 base64 encoding specified in RFC 2045 - I<MIME (Multipurpose Internet
39 Mail Extensions)>. The base64 encoding is designed to represent
62 Decode a base64 string by calling the decode_base64() function. This
66 Any character not part of the 65-character base64 subset is
71 non-base64 chars, is not a multiple of 4 or if padding occurs too early,
90 =item Premature end of base64 data
93 base64 data should be padded with one or two "=" characters to make
97 =item Premature padding of base64 data
100 in a base64 quarte
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Encode/lib/Encode/Unicode/
H A DUTF7.pm41 my $base64 = encode_base64($e_utf16->encode($1), '');
42 $base64 =~ s/=+$//;
43 $bytes .= "+$base64-";
63 my $base64 = $1;
64 my $pad = length($base64) % 4;
65 $base64 .= "=" x (4 - $pad) if $pad;
66 $str .= $e_utf16->decode(decode_base64($base64));
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Encode/lib/Encode/
H A DEncoder.pm112 encoder($data)->iso_8859_1->base64; # provided base64() is defined
114 encoder($base64)->bytes('base64')->latin1;
127 my $base64 = encoder($utf8)->latin1->base64;
132 my $base64 = encode_base64($utf8);
136 my $base64 = encode_base64(encode("latin1", $utf8));
203 =head2 Example: base64 transcoder
211 __PACKAGE__->Define('base64');
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/video/
H A Defi_uga.c109 grub_uint64_t base64; local
126 base64 = old_bar2;
127 base64 <<= 32;
128 base64 |= (old_bar1 & GRUB_PCI_ADDR_MEM_MASK);
133 (unsigned long long) base64);
137 *fb_base = base64;
/osnet-11/usr/src/lib/libiscsit/
H A DMakefile.com29 ISCSI_OBJS_SHARED= base64.o
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Digest/
H A Dfile.pm78 Same as digest_file(), but return the digest as a base64 encoded
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Digest/MD5/
H A DMD5.pm109 Same as md5(), but will return the digest as a base64 encoded string.
114 Note that the base64 encoded string returned is not padded to be a
116 base64 encoded md5 digests you might want to append the redundant
215 Same as $md5->digest, but will return the digest as a base64 encoded
221 The base64 encoded string returned is not padded to be a multiple of 4
222 bytes long. If you want interoperability with other base64 encoded
H A DMD5.xs502 static char* base64 =
510 *d++ = base64[c1>>2];
512 *d++ = base64[(c1 & 0x3) << 4];
517 *d++ = base64[((c1 & 0x3) << 4) | ((c2 & 0xF0) >> 4)];
518 *d++ = base64[((c2 & 0xF) << 2) | ((c3 & 0xC0) >>6)];
519 *d++ = base64[c3 & 0x3F];
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/
H A DDigest.pm117 =item I<base64>
119 A string of portable printable characters. This is the base64 encoded
256 Same as $ctx->digest, but will return the digest as a base64 encoded
/osnet-11/usr/src/lib/libresolv2/
H A DMakefile.com50 ISCOBJS= assertions.o base64.o bitncmp.o ctl_clnt.o \
/osnet-11/usr/src/lib/libast/
H A DMakefile.com442 common/string/base64.o \

Completed in 39 milliseconds