<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Base64 Converter in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/base64-converter/m-p/2968701#M815355</link>
    <description># perl -MMIME::Base64 -e ....&lt;BR /&gt;&lt;BR /&gt;MIME::Base64(3pm)      Perl Programmers Reference Guide      MIME::Base64(3pm)&lt;BR /&gt;&lt;BR /&gt;NAME&lt;BR /&gt;       MIME::Base64 - Encoding and decoding of base64 strings&lt;BR /&gt;&lt;BR /&gt;SYNOPSIS&lt;BR /&gt;        use MIME::Base64;&lt;BR /&gt;&lt;BR /&gt;        $encoded = encode_base64('Aladdin:open sesame');&lt;BR /&gt;        $decoded = decode_base64($encoded);&lt;BR /&gt;&lt;BR /&gt;DESCRIPTION&lt;BR /&gt;       This module provides functions to encode and decode strings into the&lt;BR /&gt;       Base64 encoding specified in RFC 2045 - MIME (Multipurpose Internet&lt;BR /&gt;       Mail Extensions). The Base64 encoding is designed to represent arbi-&lt;BR /&gt;       trary sequences of octets in a form that need not be humanly readable.&lt;BR /&gt;       A 65-character subset ([A-Za-z0-9+/=]) of US-ASCII is used, enabling 6&lt;BR /&gt;       bits to be represented per printable character.&lt;BR /&gt;&lt;BR /&gt;       The following functions are provided:&lt;BR /&gt;&lt;BR /&gt;       encode_base64($str, [$eol])&lt;BR /&gt;           Encode data by calling the encode_base64() function.  The first&lt;BR /&gt;           argument is the string to encode.  The second argument is the line&lt;BR /&gt;           ending sequence to use (it is optional and defaults to "\n").  The&lt;BR /&gt;           returned encoded string is broken into lines of no more than 76&lt;BR /&gt;           characters each and it will end with $eol unless it is empty.  Pass&lt;BR /&gt;           an empty string as second argument if you do not want the encoded&lt;BR /&gt;           string broken into lines.&lt;BR /&gt;&lt;BR /&gt;       decode_base64($str)&lt;BR /&gt;           Decode a base64 string by calling the decode_base64() function.&lt;BR /&gt;           This function takes a single argument which is the string to decode&lt;BR /&gt;           and returns the decoded data.&lt;BR /&gt;&lt;BR /&gt;Enjoy, have FUN! H.Merijn</description>
    <pubDate>Thu, 08 May 2003 19:23:21 GMT</pubDate>
    <dc:creator>H.Merijn Brand (procura</dc:creator>
    <dc:date>2003-05-08T19:23:21Z</dc:date>
    <item>
      <title>Base64 Converter</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/base64-converter/m-p/2968699#M815353</link>
      <description>Hi everyone.  I was wondering whether someone has a way to convert text to Base64 in HPUX 11. Thanks in advanced. Tommy</description>
      <pubDate>Thu, 08 May 2003 16:47:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/base64-converter/m-p/2968699#M815353</guid>
      <dc:creator>Tommy_6</dc:creator>
      <dc:date>2003-05-08T16:47:07Z</dc:date>
    </item>
    <item>
      <title>Re: Base64 Converter</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/base64-converter/m-p/2968700#M815354</link>
      <description>I'm reading into this that you are dealing with MIME octet-stream base64 encoding.&lt;BR /&gt;&lt;BR /&gt;Have a look at the mpack/mumpack utility available from any of the HP-UX Porting Centre's.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://gatekeep.cs.utah.edu/hppd/hpux/Users/mpack-1.5/" target="_blank"&gt;http://gatekeep.cs.utah.edu/hppd/hpux/Users/mpack-1.5/&lt;/A&gt;</description>
      <pubDate>Thu, 08 May 2003 17:00:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/base64-converter/m-p/2968700#M815354</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2003-05-08T17:00:52Z</dc:date>
    </item>
    <item>
      <title>Re: Base64 Converter</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/base64-converter/m-p/2968701#M815355</link>
      <description># perl -MMIME::Base64 -e ....&lt;BR /&gt;&lt;BR /&gt;MIME::Base64(3pm)      Perl Programmers Reference Guide      MIME::Base64(3pm)&lt;BR /&gt;&lt;BR /&gt;NAME&lt;BR /&gt;       MIME::Base64 - Encoding and decoding of base64 strings&lt;BR /&gt;&lt;BR /&gt;SYNOPSIS&lt;BR /&gt;        use MIME::Base64;&lt;BR /&gt;&lt;BR /&gt;        $encoded = encode_base64('Aladdin:open sesame');&lt;BR /&gt;        $decoded = decode_base64($encoded);&lt;BR /&gt;&lt;BR /&gt;DESCRIPTION&lt;BR /&gt;       This module provides functions to encode and decode strings into the&lt;BR /&gt;       Base64 encoding specified in RFC 2045 - MIME (Multipurpose Internet&lt;BR /&gt;       Mail Extensions). The Base64 encoding is designed to represent arbi-&lt;BR /&gt;       trary sequences of octets in a form that need not be humanly readable.&lt;BR /&gt;       A 65-character subset ([A-Za-z0-9+/=]) of US-ASCII is used, enabling 6&lt;BR /&gt;       bits to be represented per printable character.&lt;BR /&gt;&lt;BR /&gt;       The following functions are provided:&lt;BR /&gt;&lt;BR /&gt;       encode_base64($str, [$eol])&lt;BR /&gt;           Encode data by calling the encode_base64() function.  The first&lt;BR /&gt;           argument is the string to encode.  The second argument is the line&lt;BR /&gt;           ending sequence to use (it is optional and defaults to "\n").  The&lt;BR /&gt;           returned encoded string is broken into lines of no more than 76&lt;BR /&gt;           characters each and it will end with $eol unless it is empty.  Pass&lt;BR /&gt;           an empty string as second argument if you do not want the encoded&lt;BR /&gt;           string broken into lines.&lt;BR /&gt;&lt;BR /&gt;       decode_base64($str)&lt;BR /&gt;           Decode a base64 string by calling the decode_base64() function.&lt;BR /&gt;           This function takes a single argument which is the string to decode&lt;BR /&gt;           and returns the decoded data.&lt;BR /&gt;&lt;BR /&gt;Enjoy, have FUN! H.Merijn</description>
      <pubDate>Thu, 08 May 2003 19:23:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/base64-converter/m-p/2968701#M815355</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2003-05-08T19:23:21Z</dc:date>
    </item>
    <item>
      <title>Re: Base64 Converter</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/base64-converter/m-p/2968702#M815356</link>
      <description>Actually, I need just a regular string converted to base64 as described in RFC 1521.</description>
      <pubDate>Thu, 08 May 2003 19:37:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/base64-converter/m-p/2968702#M815356</guid>
      <dc:creator>Tommy_6</dc:creator>
      <dc:date>2003-05-08T19:37:28Z</dc:date>
    </item>
    <item>
      <title>Re: Base64 Converter</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/base64-converter/m-p/2968703#M815357</link>
      <description>Which is done with MIME::Base64&lt;BR /&gt;&lt;BR /&gt;see &lt;A href="http://search.cpan.org/author/ERYQ/MIME-tools-5.411a/lib/MIME/Head.pm" target="_blank"&gt;http://search.cpan.org/author/ERYQ/MIME-tools-5.411a/lib/MIME/Head.pm&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;--8&amp;lt;---&lt;BR /&gt;DESCRIPTION &lt;BR /&gt;&lt;BR /&gt;A class for parsing in and manipulating RFC-822 message headers, with some methods geared towards standard (and not so standard) MIME fields as specified in RFC-1521, Multipurpose Internet Mail Extensions. &lt;BR /&gt;--&amp;gt;8---&lt;BR /&gt;&lt;BR /&gt;Enter 1521 in &lt;A href="http://search.cpan.org/" target="_blank"&gt;http://search.cpan.org/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Enjoy, have FUN! H.Merijn</description>
      <pubDate>Thu, 08 May 2003 19:49:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/base64-converter/m-p/2968703#M815357</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2003-05-08T19:49:06Z</dc:date>
    </item>
  </channel>
</rss>

