You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
![]() |
3 years ago | |
---|---|---|
.github | 3 years ago | |
SimplePack | 3 years ago | |
cli | 3 years ago | |
tests | 3 years ago | |
.gitignore | 3 years ago | |
LICENSE.txt | 3 years ago | |
README.md | 3 years ago |
README.md
SimplePack-dotnet 🧳
This is a dotnet binary encoding library intended to encode bytes messages suitable for transmission over text-only channels, e.g. certain document formats, instant messages, and web pages.
- Custom human meaningful header/footer
- Built in checksum for error detection (not cryptographic)
- No new lines or odd characters (uses base58). This means less mangling by external services.
Install
Available on nuget: https://www.nuget.org/packages/SimplePack-base58/
Usage
SimplePack packer = new SimplePack("MyHeader ", " MyFooter");
# encode
packer.encode(arbitraryBytes);
# decode
packer.decode("MyHeader <encode result data> MyFooter");