We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0285e7 commit 90910e1Copy full SHA for 90910e1
build/libcrypt.ahk
@@ -1,4 +1,4 @@
1
-LC_Version := "0.0.20.24"
+LC_Version := "0.0.21.00"
2
3
LC_ASCII2Bin(s,pretty:=0) {
4
r:=""
@@ -40,7 +40,7 @@ LC_BinStr_EncodeText(Text, Pretty=False, Encoding="UTF-8") {
40
41
LC_BinStr_DecodeText(Text, Encoding="UTF-8") {
42
Len := LC_BinStr_Decode(Bin, Text)
43
- return StrGet(&Bin, Encoding)
+ return StrGet(&Bin, Len, Encoding)
44
}
45
46
LC_BinStr_Encode(ByRef Out, ByRef In, InLen, Pretty=False) {
@@ -68,6 +68,7 @@ LC_BinStr_Decode(ByRef Out, ByRef In) {
68
69
70
71
+
72
LC_Base64_EncodeText(Text,Encoding="UTF-8")
73
{
74
VarSetCapacity(Bin, StrPut(Text, Encoding))
@@ -78,7 +79,7 @@ LC_Base64_EncodeText(Text,Encoding="UTF-8")
78
79
LC_Base64_DecodeText(Text,Encoding="UTF-8")
80
81
Len := LC_Base64_Decode(Bin, Text)
82
83
84
85
LC_Base64_Encode(ByRef Out, ByRef In, InLen)
0 commit comments