Skip to content

vdfor/dart-base62x

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dart-base62x

Base62x is an non-symbolic Base64 encoding scheme. It can be used safely in computer file systems, programming languages for data exchange, internet communication systems, etc, and it is an ideal substitute and successor of many variants of Base64 encoding scheme.

This dart implementation was inspired by wadelau's polyglot Base62x repository.

Pub Package

Installation

flutter pub add base62x

Usage

import 'package:base62x/base62x.dart';

final encodeStr = Base62x.encode('hello,world'); // helloxdworldx
final decodeStr = Base62x.decode('helloxdworldx'); // hello,world

Api

Base62x.encode(String input) -> String

Base62x.decode(String input) -> String

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages