- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Base64 Converter
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-08-2003 09:47 AM
тАО05-08-2003 09:47 AM
Base64 Converter
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-08-2003 10:00 AM
тАО05-08-2003 10:00 AM
Re: Base64 Converter
Have a look at the mpack/mumpack utility available from any of the HP-UX Porting Centre's.
http://gatekeep.cs.utah.edu/hppd/hpux/Users/mpack-1.5/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-08-2003 12:23 PM
тАО05-08-2003 12:23 PM
Re: Base64 Converter
MIME::Base64(3pm) Perl Programmers Reference Guide MIME::Base64(3pm)
NAME
MIME::Base64 - Encoding and decoding of base64 strings
SYNOPSIS
use MIME::Base64;
$encoded = encode_base64('Aladdin:open sesame');
$decoded = decode_base64($encoded);
DESCRIPTION
This module provides functions to encode and decode strings into the
Base64 encoding specified in RFC 2045 - MIME (Multipurpose Internet
Mail Extensions). The Base64 encoding is designed to represent arbi-
trary sequences of octets in a form that need not be humanly readable.
A 65-character subset ([A-Za-z0-9+/=]) of US-ASCII is used, enabling 6
bits to be represented per printable character.
The following functions are provided:
encode_base64($str, [$eol])
Encode data by calling the encode_base64() function. The first
argument is the string to encode. The second argument is the line
ending sequence to use (it is optional and defaults to "\n"). The
returned encoded string is broken into lines of no more than 76
characters each and it will end with $eol unless it is empty. Pass
an empty string as second argument if you do not want the encoded
string broken into lines.
decode_base64($str)
Decode a base64 string by calling the decode_base64() function.
This function takes a single argument which is the string to decode
and returns the decoded data.
Enjoy, have FUN! H.Merijn
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-08-2003 12:37 PM
тАО05-08-2003 12:37 PM
Re: Base64 Converter
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-08-2003 12:49 PM
тАО05-08-2003 12:49 PM
Re: Base64 Converter
see http://search.cpan.org/author/ERYQ/MIME-tools-5.411a/lib/MIME/Head.pm
--8<---
DESCRIPTION
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.
-->8---
Enter 1521 in http://search.cpan.org/
Enjoy, have FUN! H.Merijn