Timthumb.php - 51.691 bytes - Sat, 12.01.13 at 21:43 - \wp-content\Themes\THEME\
13.502 // base64 encoded red image that says 'no hotlinkers'
13.602 $imgData = base64_decode("R0lGODlhUAAMAIAAAP8AAP///yH5BAAHAP8ALAAAAABQAAwAAAJpjI+py+0Po5y0OgAMjjv01YUZ\nOGplhWXfNa6JCLnWkXplrcBmW+spbwvaVr/cDyg7IoFC2KbYVC2NQ5MQ4ZNao9Ynzjl9ScNYpneb\nDULB3RP6JuPuaGfuuV4fumf8PuvqFyhYtjdoeFgAADs=");
class-feed.php - 3.684 bytes - Thu, 22.11.12 at 00:23 - \wp-includes\
3.271 if ( $type & SIMPLEPIE_CONSTRUCT_BASE64 ) {
3.293 $data = base64_decode( $data );
class-http.php - 58.772 bytes - Fri, 25.01.13 at 17:17 - \wp-includes\
46.547 return 'Proxy-Authorization: Basic ' . base64_encode( $this->authentication() );
class-IXR.php - 31.675 bytes - Wed, 15.08.12 at 14:12 - \wp-includes\
2.970 // Deal with IXR object types base64 and date
3.155 if (is_object($this->data) && is_a($this->data, 'IXR_Base64')) {
3.187 return 'base64';
5.016 case 'base64':
10.042 case 'base64':
10.076 $value = base64_decode($this->_currentTagContents);
25.459 * IXR_Base64
25.513 class IXR_Base64
25.555 function IXR_Base64($data)
25.656 return '<base64>'.base64_encode($this->data).'</base64>';
25.665 return '<base64>'.base64_encode($this->data).'</base64>';
25.695 return '<base64>'.base64_encode($this->data).'</base64>';
28.484 case 'base64':
30.447 case 'base64':
30.496 $return[] = new IXR_Base64('base64');
30.504 $return[] = new IXR_Base64('base64');
class-phpmailer.php - 81.728 bytes - Mon, 25.06.12 at 21:54 - \wp-includes\
2.745 * "8bit", "7bit", "binary", "base64", and "quoted-printable".
48.985 public function AddAttachment($path, $name = '', $encoding = 'base64', $type = 'application/octet-stream') {
52.434 * @param string $encoding The encoding to use; one of 'base64', '7bit', '8bit', 'binary', 'quoted-printable'
52.612 protected function EncodeFile($path, $encoding = 'base64') {
53.774 * @param string $encoding The encoding to use; one of 'base64', '7bit', '8bit', 'binary', 'quoted-printable'
53.924 public function EncodeString($str, $encoding = 'base64') {
54.002 case 'base64':
54.042 $encoded = chunk_split(base64_encode($str), 76, $this->LE);
56.065 $encoded = $this->Base64EncodeWrapMB($str);
56.125 $encoded = base64_encode($str);
57.424 public function Base64EncodeWrapMB($str) {
57.774 // Base64 has a 4:3 ratio
58.062 $chunk = base64_encode($chunk);
63.363 public function AddStringAttachment($string, $filename, $encoding = 'base64', $type = 'application/octet-stream') {
64.373 public function AddEmbeddedImage($path, $cid, $name = '', $encoding = 'base64', $type = 'application/octet-stream') {
64.986 public function AddStringEmbeddedImage($string, $cid, $filename = '', $encoding = 'base64', $type = 'application/octet-stream') {
71.060 if ( $this->AddEmbeddedImage($basedir.$directory.$filename, md5($filename), $filename, 'base64', $mimeType) ) {
77.921 return base64_encode($signature);
80.309 $DKIMb64 = base64_encode(pack("H*", sha1($body))) ; // Base64 of packed binary SHA-1 hash of body
80.353 $DKIMb64 = base64_encode(pack("H*", sha1($body))) ; // Base64 of packed binary SHA-1 hash of body
class-simplepie.php - 90.453 bytes - Mon, 05.11.12 at 07:25 - \wp-includes\
7.558 * base64-encoded construct
7.615 define('SIMPLEPIE_CONSTRUCT_BASE64', 8);
class-smtp.php - 24.618 bytes - Tue, 07.02.12 at 09:13 - \wp-includes\
7.639 fputs($this->smtp_conn, base64_encode($username) . $this->CRLF);
8.154 fputs($this->smtp_conn, base64_encode($password) . $this->CRLF);
class-snoopy.php - 37.774 bytes - Wed, 27.10.10 at 03:54 - \wp-includes\
25.678 $headers .= "Authorization: Basic ".base64_encode($this->user.":".$this->pass)."\r\n";
25.841 $headers .= 'Proxy-Authorization: ' . 'Basic ' . base64_encode($this->proxy_user . ':' . $this->proxy_pass)."\r\n";
30.573 $headers[] = "Authorization: BASIC ".base64_encode($this->user.":".$this->pass);
File.php - 9.678 bytes - Wed, 21.11.12 at 15:31 - \wp-includes\SimplePie\
6.807 $out .= "Authorization: Basic " . base64_encode("$url_parts[user]:$url_parts[pass]") . "\r\n";
Misc.php - 51.559 bytes - Wed, 21.11.12 at 15:31 - \wp-includes\SimplePie\
40.331 if (isset($attribs['']['mode']) && strtolower(trim($attribs['']['mode']) === 'base64'))
40.376 $mode = SIMPLEPIE_CONSTRUCT_BASE64;
41.903 return SIMPLEPIE_CONSTRUCT_BASE64;
Sanitize.php - 15.703 bytes - Sun, 02.12.12 at 09:43 - \wp-includes\SimplePie\
7.019 if ($type & SIMPLEPIE_CONSTRUCT_BASE64)
7.044 $data = base64_decode($data);