-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathRFC4648.txt
43 lines (29 loc) · 1.66 KB
/
RFC4648.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
*vital/Data/Base32/RFC4648.txt* base32 utilities library.
Maintainer: Tsuyoshi CHO <Tsuyoshi.CHO+develop@Gmail.com>
==============================================================================
CONTENTS *Vital.Data.Base32.RFC4648-contents*
INTRODUCTION |Vital.Data.Base32.RFC4648-introduction|
INTERFACE |Vital.Data.Base32.RFC4648-interface|
Functions |Vital.Data.Base32.RFC4648-functions|
==============================================================================
INTRODUCTION *Vital.Data.Base32.RFC4648-introduction*
*Vital.Data.Base32.RFC4648* is Base32 RFC4648 implementation.
It provides base32 standard converter.
==============================================================================
INTERFACE *Vital.Data.Base32.RFC4648-interface*
------------------------------------------------------------------------------
FUNCTIONS *Vital.Data.Base32.RFC4648-functions*
encode({str}) *Vital.Data.Base32.RFC4648.encode()*
Return base32 RFC4648 encoded string from {str}.
encodebin({str}) *Vital.Data.Base32.RFC4648.encodebin()*
Return base32 RFC4648 encoded string from {str}. {str} is hex encoded
string figured as bytes.
encodebytes({bytes}) *Vital.Data.Base32.RFC4648.encodebytes()*
Return base32 RFC4648 encoded string from {bytes}.
decode({str}) *Vital.Data.Base32.RFC4648.decode()*
Return decoded string from {str} that's base32 RFC4648 encoded.
{str} are case insensitive.
decoderaw({str}) *Vital.Data.Base32.RFC4648.decoderaw()*
Return decoded bytes-list from {str} that's base32 RFC4648 encoded.
==============================================================================
vim:tw=78:fo=tcq2mM:ts=8:ft=help:norl:noet:fen: