JPBetley / tiny-dotnet

Tiny for .NET

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Tiny

Build Status

A reversible base62 ID obfuscater

Authors

Originally by Jacob DeHart, with Ruby and Python ports by Kyle Bragger.

Derived from the PHP implementation by Zack Kitzmiller.

Installation

Install via NuGet

PM> Install-Package JPBetley.Tiny-DotNet

Usage

var tiny = new Tiny("5SX0TEjkR1mLOw8Gvq2VyJxIFhgCAYidrclDWaM3so9bfzZpuUenKtP74QNH6B");

tiny.To(5);
// E

tiny.From("E");
// 5

Tested with Mono

All testing during development is done on the Windows .NET platform. Travis is used as an extra layer of testing, but uses the Mono library. Now you can rest assured that Tiny is available on both platforms.

About

Tiny for .NET

License:MIT License


Languages

Language:C# 100.0%