https://github.com/scriptfusion/codecs
[OLD] A collection of codecs for encoding and decoding data.
https://github.com/scriptfusion/codecs
Last synced: 4 months ago
JSON representation
[OLD] A collection of codecs for encoding and decoding data.
- Host: GitHub
- URL: https://github.com/scriptfusion/codecs
- Owner: ScriptFUSION
- Created: 2014-08-14T18:50:10.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-12-10T19:51:12.000Z (almost 10 years ago)
- Last Synced: 2025-03-17T07:22:55.922Z (8 months ago)
- Language: PHP
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Codecs
======
A collection of codecs for encoding and decoding data. Encoders encode, decoders decode; codecs do both and implement
the `Codec` interface.
Codecs and encoders list
------------------------
The following codecs and encoders are available.
- `Base64Codec` – [Base64](http://php.net/manual/en/function.base64-encode.php) encoding.
- `CodecList` – Applies a list of codecs in series.
- `NewlineEncoder` – Converts line endings.
- `OpenSslCodec` – [OpenSSL](http://php.net/manual/en/book.openssl.php) encryption.
- `Rot13Codec` – [Rot13](http://php.net/manual/en/function.str-rot13.php) encoding.
- `TransparentCodec` – No encoding.