{
    "content": [
        {
            "type": "text",
            "text": "# MIME::Base32 (perldoc)\n\n## NAME\n\nMIME::Base32 - Base32 encoder and decoder\n\n## SYNOPSIS\n\n#!/usr/bin/env perl\nuse strict;\nuse warnings;\nuse MIME::Base32;\nmy $encoded = encodebase32('Aladdin: open sesame');\nmy $decoded = decodebase32($encoded);\n\n## DESCRIPTION\n\nThis module is for encoding/decoding data much the way that MIME::Base64 does.\n\n## Sections\n\n- **NAME**\n- **SYNOPSIS**\n- **DESCRIPTION**\n- **FUNCTIONS**\n- **AUTHORS**\n- **BUGS**\n- **SUPPORT**\n- **COPYRIGHT AND LICENSE INFORMATION**\n- **SEE ALSO**\n\nUse structuredContent.sections for detailed options, examples, and full documentation.\n"
        }
    ],
    "structuredContent": {
        "command": "MIME::Base32",
        "section": "",
        "mode": "perldoc",
        "summary": "MIME::Base32 - Base32 encoder and decoder",
        "synopsis": "#!/usr/bin/env perl\nuse strict;\nuse warnings;\nuse MIME::Base32;\nmy $encoded = encodebase32('Aladdin: open sesame');\nmy $decoded = decodebase32($encoded);",
        "tldr_summary": null,
        "tldr_examples": [],
        "tldr_source": null,
        "flags": [],
        "examples": [],
        "see_also": [],
        "section_outline": [
            {
                "name": "NAME",
                "lines": 2,
                "subsections": []
            },
            {
                "name": "SYNOPSIS",
                "lines": 8,
                "subsections": []
            },
            {
                "name": "DESCRIPTION",
                "lines": 9,
                "subsections": []
            },
            {
                "name": "FUNCTIONS",
                "lines": 40,
                "subsections": []
            },
            {
                "name": "AUTHORS",
                "lines": 7,
                "subsections": []
            },
            {
                "name": "BUGS",
                "lines": 12,
                "subsections": []
            },
            {
                "name": "SUPPORT",
                "lines": 18,
                "subsections": []
            },
            {
                "name": "COPYRIGHT AND LICENSE INFORMATION",
                "lines": 6,
                "subsections": []
            },
            {
                "name": "SEE ALSO",
                "lines": 2,
                "subsections": []
            }
        ],
        "sections": {
            "NAME": {
                "content": "MIME::Base32 - Base32 encoder and decoder\n",
                "subsections": []
            },
            "SYNOPSIS": {
                "content": "#!/usr/bin/env perl\nuse strict;\nuse warnings;\nuse MIME::Base32;\n\nmy $encoded = encodebase32('Aladdin: open sesame');\nmy $decoded = decodebase32($encoded);\n",
                "subsections": []
            },
            "DESCRIPTION": {
                "content": "This module is for encoding/decoding data much the way that MIME::Base64 does.\n\nPrior to version 1.0, MIME::Base32 used the \"base32hex\" (or \"[0-9A-V]\") encoding and decoding\nmethods by default. If you need to maintain that behavior, please call \"encodebase32hex\" or\n\"decodebase32hex\" functions directly.\n\nNow, in accordance with RFC-3548, Section 5 <https://tools.ietf.org/html/rfc3548#section-5>,\nMIME::Base32 uses the \"encodebase32\" and \"decodebase32\" functions by default.\n",
                "subsections": []
            },
            "FUNCTIONS": {
                "content": "The following primary functions are provided:\n\ndecode\nSynonym for \"decodebase32\"\n\ndecoderfc3548\nSynonym for \"decodebase32\"\n\ndecodebase32\nmy $string = decodebase32($encodeddata);\n\nDecode some encoded data back into a string of text or binary data.\n\ndecode09AV\nSynonym for \"decodebase32hex\"\n\ndecodebase32hex\nmy $stringorbinarydata = MIME::Base32::decodebase32hex($encodeddata);\n\nDecode some encoded data back into a string of text or binary data.\n\nencode\nSynonym for \"encodebase32\"\n\nencoderfc3548\nSynonym for \"encodebase32\"\n\nencodebase32\nmy $encoded = encodebase32(\"some string\");\n\nEncode a string of text or binary data.\n\nencode09AV\nSynonym for \"encodebase32hex\"\n\nencodebase32hex\nmy $encoded = MIME::Base32::encodebase32hex(\"some string\");\n\nEncode a string of text or binary data. This uses the \"hex\" (or \"[0-9A-V]\") method.\n",
                "subsections": []
            },
            "AUTHORS": {
                "content": "Jens Rehsack - <rehsack@cpan.org> - Current maintainer\n\nChase Whitener\n\nDaniel Peder - sponsored by Infoset s.r.o., Czech Republic - <Daniel.Peder@InfoSet.COM>\nhttp://www.infoset.com - Original author\n",
                "subsections": []
            },
            "BUGS": {
                "content": "Before reporting any new issue, bug or alike, please check\n<https://rt.cpan.org/Dist/Display.html?Queue=MIME-Base32>,\n<https://github.com/perl5-utils/MIME-Base32/issues> or\n<https://github.com/perl5-utils/MIME-Base32/pulls>, respectively, whether the issue is already\nreported.\n\nPlease report any bugs or feature requests to \"bug-mime-base32 at rt.cpan.org\", or through the\nweb interface at <https://rt.cpan.org/NoAuth/ReportBug.html?Queue=MIME-Base32>. I will be\nnotified, and then you'll automatically be notified of progress on your bug as I make changes.\n\nAny and all criticism, bug reports, enhancements, fixes, etc. are appreciated.\n",
                "subsections": []
            },
            "SUPPORT": {
                "content": "You can find documentation for this module with the perldoc command.\n\nperldoc MIME::Base32\n\nYou can also look for information at:\n\n*   RT: CPAN's request tracker\n\n<https://rt.cpan.org/Dist/Display.html?Name=MIME-Base32>\n\n*   AnnoCPAN: Annotated CPAN documentation\n\n<http://annocpan.org/dist/MIME-Base32>\n\n*   MetaCPAN\n\n<https://metacpan.org/release/MIME-Base32>\n",
                "subsections": []
            },
            "COPYRIGHT AND LICENSE INFORMATION": {
                "content": "Copyright (c) 2003-2010 Daniel Peder. All rights reserved. Copyright (c) 2015-2016 Chase\nWhitener. All rights reserved. Copyright (c) 2016 Jens Rehsack. All rights reserved.\n\nThis library is free software; you can redistribute it and/or modify it under the same terms as\nPerl itself.\n",
                "subsections": []
            },
            "SEE ALSO": {
                "content": "MIME::Base64, RFC-3548 <https://tools.ietf.org/html/rfc3548#section-5>\n",
                "subsections": []
            }
        }
    }
}