-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathBase64.txt
42 lines (28 loc) · 1.55 KB
/
Base64.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
*vital/Data/Base64.txt* base64 utilities library.
Maintainer: Tsuyoshi CHO <[email protected]>
==============================================================================
CONTENTS *Vital.Data.Base64-contents*
INTRODUCTION |Vital.Data.Base64-introduction|
INTERFACE |Vital.Data.Base64-interface|
Functions |Vital.Data.Base64-functions|
==============================================================================
INTRODUCTION *Vital.Data.Base64-introduction*
*Vital.Data.Base64* is Base64 wrapping interface for |Vital.Data.Base64.RFC4648|.
It provides base64 standard converter.
==============================================================================
INTERFACE *Vital.Data.Base64-interface*
------------------------------------------------------------------------------
FUNCTIONS *Vital.Data.Base64-functions*
encode({str}) *Vital.Data.Base64.encode()*
Return base64 RFC4648 encoded string from {str}.
encodebin({str}) *Vital.Data.Base64.encodebin()*
Return base64 RFC4648 encoded string from {str}. {str} is hex encoded
string figured as bytes.
encodebytes({bytes}) *Vital.Data.Base64.encodebytes()*
Return base64 RFC4648 encoded string from {bytes}.
decode({str}) *Vital.Data.Base64.decode()*
Return decoded string from {str} that's base64 RFC4648 encoded.
decoderaw({str}) *Vital.Data.Base64.decoderaw()*
Return decoded bytes-list from {str} that's base64 RFC4648 encoded.
==============================================================================
vim:tw=78:fo=tcq2mM:ts=8:ft=help:norl:noet:fen: