-
Notifications
You must be signed in to change notification settings - Fork 64
/
Base16.txt
43 lines (29 loc) · 1.56 KB
/
Base16.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/Base16.txt* base16 utilities library.
Maintainer: Tsuyoshi CHO <[email protected]>
==============================================================================
CONTENTS *Vital.Data.Base16-contents*
INTRODUCTION |Vital.Data.Base16-introduction|
INTERFACE |Vital.Data.Base16-interface|
Functions |Vital.Data.Base16-functions|
==============================================================================
INTRODUCTION *Vital.Data.Base16-introduction*
*Vital.Data.Base16* is base16 wrapping interface for |Vital.Data.List.Byte|.
It provides base16 standard converter.
==============================================================================
INTERFACE *Vital.Data.Base16-interface*
------------------------------------------------------------------------------
FUNCTIONS *Vital.Data.Base16-functions*
encode({str}) *Vital.Data.Base16.encode()*
Return base16 RFC4648 encoded string from {str}.
encodebin({str}) *Vital.Data.Base16.encodebin()*
Return base16 RFC4648 encoded string from {str}.
same as {str} and return through {str}.
encodebytes({bytes}) *Vital.Data.Base16.encodebytes()*
Return base16 RFC4648 encoded string from {bytes}.
decode({str}) *Vital.Data.Base16.decode()*
Return decoded string from {str} that's base16 RFC4648 encoded.
{str} are case insensitive.
decoderaw({str}) *Vital.Data.Base16.decoderaw()*
Return decoded bytes-list from {str} that's base16 RFC4648 encoded.
==============================================================================
vim:tw=78:fo=tcq2mM:ts=8:ft=help:norl:noet:fen: