An open API service indexing awesome lists of open source software.

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.

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.