basez - base 16/32/64 encode/decode data to standard output
basez [OPTION]... [FILE] hex [OPTION]... [FILE] unhex [OPTION]... [FILE] base16 [OPTION]... [FILE] base32 [OPTION]... [FILE] base32plain [OPTION]... [FILE] base32hex [OPTION]... [FILE] base64 [OPTION]... [FILE] base64plain [OPTION]... [FILE] base64url [OPTION]... [FILE] base64mime [OPTION]... [FILE] base64pem [OPTION]... [FILE]
BaseZ encodes/decodes base16, base32, base32hex, base64 or base64url data stream per RFC 4648; MIME base64 Content-Transfer-Encoding per RFC 2045; or PEM Printable Encoding per RFC 1421. Base16 encoding produces a multiple of two-character blocks in hexadecimal notation [0-9a-f]. It needs no padding and preserves the sort order of the encoded data. Decoding is case insensitive. Base32 encoded stream is a multiple of eight-character blocks consisting of letters and numbers [A-Z2-7]. Numbers easily confused with some letters are skipped intentionally to make this encoding suitable for storage on -- or transport over -- any medium or data transport mechanism, including non-case-preserving barcodes or printed out strings that could be spelled out and typed in by humans. If needed, the last encoded block is padded with equal sign end padding. Appearance of the padding character [=] at the end of the encoded steam can be avoided by encoding data of size divisible by 5. Base32 decoding is case insensitive. Base32hex encoding works the same way as base32 but witn an alternative character-set [0-9a-v] to preserve the encoded data sort order. This encoding should not be confused with base32. Base64 encoded stream is a multiple of four-character blocks using uppercase letters, lowercase letters, numbers, plus and slash [A-Za-z0-9+/]. It uses equal sign [=] for end padding. Base64 decoding is case sensitive. It has an option to convert local native text line breaks into canonical CRLF sequences prior to encoding or to convert CRLF sequences into native text line breaks after the decoding. Base64url encoding is technically the same as base64 but instead of the plus and slash signs [+/] it uses minus and underscore [-_]. Appearance of the padding character [=] in the encoded stream can be avoided by encoding data of size divisible by 3. Base64mime and base64pem are the same encodes as base64 but with encoded stream line length limit of 76 and 64 characters respectively. PEM decoding ignores all white and non-printable characters; MIME decoding ignores all characters outside of the encode character-set.
When no FILE is specified or when FILE is -, read standard input. When multiple conflicting options appear, the last option wins. -d, -D, --decode Decode. By default ignore the space and newline characters. The --strict, --ignore-all-space, and --ignore-garbage options provide alternative behaviors. Default option for unhex command. -r, --strict Do not ignore any characters outside of the encode character-set on decoding. -s, --ignore-all-space Ignore all white and non-printable ASCII characters on decoding. Default for base64pem decoding. -g, --ignore-garbage Ignore all characters outside of the encode character-set on decoding. Default for base64mime decoding. -x, --hex, --base16 Base16 coding. Default for base16, hex and unhex commands. -j, --base32 Base32 coding. Default for base32 and base32plain commands. -e --base32hex Base32hex coding. Default for base32hex command. -c, --capitals, --upper-case Output upper case letters on encoding, if applicable. -l, --lower-case Output lower case letters on encoding, if applicable. -a, --base64 Base64 coding. Default for basez, base64 and base64plain commands. -u, --base64url Base64url coding. Default for base64url command. -p, --base64pem PEM printable coding. Default for base64pem command. -m, --base64mime MIME base64 coding. Default for base64mime command. -t, --text Convert native text line breaks into CRLF sequences prior to encoding or convert CRLF sequences into native text line breaks after decoding. This option applies to all variants of base64 codings. -w N, -b N, --wrap=N, --break=N Set encoded stream line length limit to N characters. The default value is 76 for base64mime encode, 64 for base64pem encode, infinity for all other encodes. To disable any appearance of EOL characters in the encoded stream, set to 0. -i FILEIN, --input=FILEIN Input file. Default is standard input. When FILEIN is -, read stdin. -o FILEOUT, --output=FILEOUT Output file. Default is standard output. When FILEOUT is -, write to stdout. -h, --help Display help. --version Display program version information.
Base16 decode a string: echo 4a6f650a | hex --decode Inspect output of a command: echo Joe | hex --wrap 2 Base32 encode a string: printf "Hi People\n" | base32plain MIME base64 encode a binary file to stdout per RFC 2045: base64mime FILE MIME base64 encode a text file to stdout per RFC 2045: base64mime --text FILE Base64 encode a file per RFC 4648 base64plain FILE > base64.rfc4648.file
Written by Milan Kupcevic.
Report bugs to <[email protected]> with a 'bug:' somewhere in the subject line. These commands are parts of the BaseZ software package. [BaseZ] <http://www.quarkline.net/basez>
Copyright 2013, 2015, 2016 Milan Kupcevic. This program comes with ABSOLUTELY NO WARRANTY; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. This program is licensed under the terms of the GNU GPL version 3 or any later version as published by the Free Software Foundation. User documentation is alternatively licensed under the Creative Commons Attribution-ShareAlike license version 3 or a later version as published by the Creative Commons Corporation.
base64(1), base32(1), uuencode(1), uudecode(1)
Personal Opportunity - Free software gives you access to billions of dollars of software at no cost. Use this software for your business, personal use or to develop a profitable skill. Access to source code provides access to a level of capabilities/information that companies protect though copyrights. Open source is a core component of the Internet and it is available to you. Leverage the billions of dollars in resources and capabilities to build a career, establish a business or change the world. The potential is endless for those who understand the opportunity.
Business Opportunity - Goldman Sachs, IBM and countless large corporations are leveraging open source to reduce costs, develop products and increase their bottom lines. Learn what these companies know about open source and how open source can give you the advantage.
Free Software provides computer programs and capabilities at no cost but more importantly, it provides the freedom to run, edit, contribute to, and share the software. The importance of free software is a matter of access, not price. Software at no cost is a benefit but ownership rights to the software and source code is far more significant.
Free Office Software - The Libre Office suite provides top desktop productivity tools for free. This includes, a word processor, spreadsheet, presentation engine, drawing and flowcharting, database and math applications. Libre Office is available for Linux or Windows.
The Free Books Library is a collection of thousands of the most popular public domain books in an online readable format. The collection includes great classical literature and more recent works where the U.S. copyright has expired. These books are yours to read and use without restrictions.
Source Code - Want to change a program or know how it works? Open Source provides the source code for its programs so that anyone can use, modify or learn how to write those programs themselves. Visit the GNU source code repositories to download the source.
Study at Harvard, Stanford or MIT - Open edX provides free online courses from Harvard, MIT, Columbia, UC Berkeley and other top Universities. Hundreds of courses for almost all major subjects and course levels. Open edx also offers some paid courses and selected certifications.
Linux Manual Pages - A man or manual page is a form of software documentation found on Linux/Unix operating systems. Topics covered include computer programs (including library and system calls), formal standards and conventions, and even abstract concepts.