Codec
Codecs Plugin for Sublime Text. Supports Secure Hash / Message Digest such as MD5, SHA-1, SHA-256, SHA-512, encoding / decoding of Base64, Base62, Base32, Base16, URL encoding, Quoted-Printable, JSON, XML, Punycode, IDNA, CSP, etc
Details
Installs
- Total 19K
- Win 13K
- Mac 5K
- Linux 2K
Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | Nov 7 | Nov 6 | Nov 5 | Nov 4 | Nov 3 | Nov 2 | Nov 1 | Oct 31 | Oct 30 | Oct 29 | Oct 28 | Oct 27 | Oct 26 | Oct 25 | Oct 24 | Oct 23 | Oct 22 | Oct 21 | Oct 20 | Oct 19 | Oct 18 | Oct 17 | Oct 16 | Oct 15 | Oct 14 | Oct 13 | Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | Oct 7 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 1 | 0 | 2 | 3 | 1 | 0 | 4 | 0 | 0 | 7 | 1 | 0 | 0 | 0 | 0 | 0 | 2 | 1 | 0 | 1 | 2 | 1 | 4 | 1 | 0 | 1 | 1 | 1 | 4 | 3 | 2 | 2 | 2 | 0 | 1 | 0 | 1 | 1 | 2 | 0 | 2 | 2 | 3 | 3 | 0 | 2 |
Mac | 1 | 2 | 0 | 5 | 1 | 0 | 0 | 0 | 0 | 2 | 1 | 1 | 1 | 2 | 1 | 2 | 2 | 0 | 1 | 0 | 1 | 0 | 2 | 1 | 2 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 2 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 |
Linux | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 3 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
Sublime Codec for ST2 and ST3
Provides a bunch of useful codecs as a Sublime Text plugin to allow you to work with:
- RFC 4648:
- encode/decode base64 (standard and url safe)
- encode/decode base32
- encode/decode base16 (hex)
- RFC 1321:
- MD5
- FIPS 180-2:
- SHA-1
- SHA-224
- SHA-256
- SHA-384
- SHA-512
- RFC 3986 URL encoding (percent encoding):
- URL encoding (classic)
- URL encoding (new school plus instead of %20
method)
- RFC 1522:
- encode/decode MIME quoted-printable
- Extensible Markup Language (XML) 1.0 (Fifth Edition):
- escape/unescape character decoding
- RFC 4627:
- JSON encoding/decode
- JSON encoding with escaped Unicode
- C-style byte strings
- RFC 3490 / RFC 5891:
- International Domain Names in Applications (IDNA)
- RFC 3492:
- Punycode
- Base62
- CSP Hash Source
Limitations
- Note that this plugin assumes that your file is UTF-8 encoded.
Installation
Package Control
- Install Package Control https://sublime.wbond.net/installation
- Pull up the command palette (
Shift+Super+P
) - Type
Package Control: Install Package
and pressreturn
key - Type
Codec
and pressreturn
key - Enjoy
Manual Install
- Copy a release from https://github.com/furikake/sublime-codec/releases
- Unzip files into
~/Library/Application\ Support/Sublime\ Text\ 3/Packages/Codec
(or equivalent in Linux and Windows)
Usage
- Look in the selection menu
- Look in command palette under
Codec
(Shift+Super+P
to bring up palette) Ctrl+Super+Y
to base64 encodeShift+Super+Y
to base64 decode