ABCDEFGHIJKLMNOPQRSTUVWXYZ
1
BallerinaTODO: Update/ImproveJavaGo LangPython
2
encodeBase64Url(byte[] input) returns string- Add support to encode with padding
https://docs.oracle.com/javase/8/docs/api/java/util/Base64.Encoder.html
- Support followings:- Support followings:
3
decodeBase64Url(string input) returns byte[]|Error- Add support for base*/mime* encoding back - base64 - base16
4
encodeUriComponent(string uriComponent, string charset) returns string|Error - mime encoding APIs in mime module but real implementation in io module.
https://docs.oracle.com/javase/8/docs/api/java/net/URLEncoder.html
- base32 - base32
5
decodeUriComponent(string uriComponent, string charset) returns string|Error - pem - base64
6
- json - base85
7
- Rename the module as `ballerina/url`https://golang.org/pkg/encoding/https://docs.python.org/3/library/base64.html
8
- json
9
https://docs.python.org/3/library/json.html
10
References
11
https://groups.google.com/g/ballerina-dev/c/sbASEwIl44k/m/0YlP3IcXFwAJ
12
https://github.com/ballerina-platform/ballerina-spec/issues/314
13
https://github.com/ballerina-platform/ballerina-lang/blob/master/langlib/lang.array/src/main/ballerina/src/lang.array/array.bal#L284
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
46
47
48
49
50
51
52
53
54
55
56
57
- Add support- Add support- Add support
58
https://docs.oracle.com/javase/8/docs/technotes/guides/security/StandardNames.html#SecureRandom
https://golang.org/pkg/crypto/rand/https://docs.python.org/3/library/secrets.html
59
60
61
https://docs.oracle.com/javase/8/docs/technotes/guides/security/crypto/CryptoSpec.html
- Align sub directories with algorithmshttps://docs.python.org/3/library/crypto.html
62
http://tutorials.jenkov.com/java-cryptography/index.html
- crypto/md5
63
- crypto/rsa
64
- crypto/x509
65
https://golang.org/pkg/crypto/#pkg-subdirectories
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100