-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathCrockford.txt
45 lines (30 loc) · 1.74 KB
/
Crockford.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
*vital/Data/Base32/Crockford.txt* base32 utilities library.
Maintainer: Tsuyoshi CHO <[email protected]>
==============================================================================
CONTENTS *Vital.Data.Base32.Crockford-contents*
INTRODUCTION |Vital.Data.Base32.Crockford-introduction|
INTERFACE |Vital.Data.Base32.Crockford-interface|
Functions |Vital.Data.Base32.Crockford-functions|
==============================================================================
INTRODUCTION *Vital.Data.Base32.Crockford-introduction*
*Vital.Data.Base32.Crockford* is Crockford's Base32 implementation.
It provides base32 Crockford converter.
https://www.crockford.com/base32.html
==============================================================================
INTERFACE *Vital.Data.Base32.Crockford-interface*
------------------------------------------------------------------------------
FUNCTIONS *Vital.Data.Base32.Crockford-functions*
encode({str}) *Vital.Data.Base32.Crockford.encode()*
Return base32 Crockford encoded string from {str}.
encodebin({str}) *Vital.Data.Base32.Crockford.encodebin()*
Return base32 Crockford encoded string from {str}. {str} is hex
encoded string figured as bytes.
encodebytes({bytes}) *Vital.Data.Base32.Crockford.encodebytes()*
Return base32 Crockford encoded string from {bytes}.
decode({str}) *Vital.Data.Base32.Crockford.decode()*
Return decoded string from {str} that's base32 Crockford encoded.
{str} are case insensitive.
decoderaw({str}) *Vital.Data.Base32.Crockford.decoderaw()*
Return decoded bytes-list from {str} that's base32 Crockford encoded.
==============================================================================
vim:tw=78:fo=tcq2mM:ts=8:ft=help:norl:noet:fen: