Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joymoe/base62.net
Base62 Encoding for .Net
https://github.com/joymoe/base62.net
Last synced: 3 days ago
JSON representation
Base62 Encoding for .Net
- Host: GitHub
- URL: https://github.com/joymoe/base62.net
- Owner: JoyMoe
- License: mit
- Created: 2018-04-08T19:34:50.000Z (almost 7 years ago)
- Default Branch: dev
- Last Pushed: 2021-05-19T16:53:50.000Z (over 3 years ago)
- Last Synced: 2025-01-04T03:37:06.493Z (20 days ago)
- Language: PowerShell
- Size: 195 KB
- Stars: 11
- Watchers: 5
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Base62.Net
Base62 Convertor for .Net
Convert between byte array and base62 string.
Special thanks to [Mengye Ren](https://github.com/renmengye) and his [base62-csharp](https://github.com/renmengye/base62-csharp), and [Daniel Destouche](https://github.com/ghost1face) and his [base62](https://github.com/ghost1face/base62).
![GitHub Workflow Status](https://img.shields.io/github/workflow/status/JoyMoe/Base62.Net/build)
[![Codecov](https://img.shields.io/codecov/c/github/JoyMoe/Base62.Net.svg)](https://codecov.io/gh/JoyMoe/Base62.Net)
[![license](https://img.shields.io/github/license/JoyMoe/Base62.Net.svg)](https://github.com/JoyMoe/Base62.Net/blob/master/LICENSE)
[![NuGet](https://img.shields.io/nuget/v/Base62-Net.svg)](https://www.nuget.org/packages/Base62-Net)
[![NuGet](https://img.shields.io/nuget/vpre/Base62-Net.svg)](https://www.nuget.org/packages/Base62-Net/absoluteLatest)
![netstandard2.0](https://img.shields.io/badge/.Net-netstandard2.0-brightgreen.svg)## Example
```csharp
var s = (new byte[] { 116, 32, 8, 99, 100, 232, 4, 7 }).ToBase62();var b = "T208OsJe107".FromBase62();
```## License
The MIT License
More info see [LICENSE](LICENSE)