Skip to content

Commit

Permalink
Update v0.1.11
Browse files Browse the repository at this point in the history
  • Loading branch information
george012 committed Sep 6, 2023
1 parent 096e696 commit ee2d09b
Show file tree
Hide file tree
Showing 9 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ package config

const (
ProjectName = "gtbox"
ProjectVersion = "v0.1.10"
ProjectVersion = "v0.1.11"
ProjectDescription = "[Golang]日常开发工具箱"
)
4 changes: 2 additions & 2 deletions gtbox_encryption/gtbox_encryption.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ extern int GT_encryptionStr(const char *inputStr,char *outputStr,const char *key
extern int GT_decryptionStr(const char *inputStr, char *outputStr, const char *keyString);
extern int gt_dec(const char *inputStr, char **outputStr, const char *keyString);
extern int gt_enc(const char *inputStr, char **outputStr, const char *keyString);
extern void GetVersion(char **versionOut);
extern int GetVersion(char **versionOut);
*/
import "C"

Expand All @@ -26,7 +26,7 @@ import (
// GetEncryptionLibVersion 获取加密库版本
func GetEncryptionLibVersion() (version string) {
var c_version *C.char
isok := C.gt_dec(&c_version)
isok := int(C.GetVersion(&c_version))

if isok != 0 {
return ""
Expand Down
Binary file modified libs/gtgo/android/arm64-v8a/libgtgo.so
Binary file not shown.
Binary file modified libs/gtgo/android/armeabi-v7a/libgtgo.so
Binary file not shown.
Binary file modified libs/gtgo/android/x86/libgtgo.so
Binary file not shown.
Binary file modified libs/gtgo/android/x86_64/libgtgo.so
Binary file not shown.
Binary file modified libs/gtgo/gtgo.dll
Binary file not shown.
Binary file modified libs/gtgo/libgtgo.dylib
Binary file not shown.
Binary file modified libs/gtgo/libgtgo.so
Binary file not shown.

0 comments on commit ee2d09b

Please sign in to comment.