aboutsummaryrefslogtreecommitdiff
path: root/sqlite3_func_crypt_test.go
diff options
context:
space:
mode:
authorYasuhiro Matsumoto <mattn.jp@gmail.com>2024-01-25 22:36:00 +0900
committermattn <mattn.jp@gmail.com>2024-01-25 22:55:22 +0900
commitc91bca4fb499831d1bf62fb2b3019338d5a3eb41 (patch)
treeeb8952f7b7c394790c620a65c20c74189f1fcb47 /sqlite3_func_crypt_test.go
parentFix musl build (#1164) (diff)
downloadgolite-c91bca4fb499831d1bf62fb2b3019338d5a3eb41.tar.gz
golite-c91bca4fb499831d1bf62fb2b3019338d5a3eb41.tar.xz
update go version to 1.19
Diffstat (limited to 'sqlite3_func_crypt_test.go')
-rw-r--r--sqlite3_func_crypt_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/sqlite3_func_crypt_test.go b/sqlite3_func_crypt_test.go
index 0329ca8..e37b467 100644
--- a/sqlite3_func_crypt_test.go
+++ b/sqlite3_func_crypt_test.go
@@ -29,7 +29,7 @@ func TestCryptEncoders(t *testing.T) {
}
for _, e := range tests {
- var fn func(pass []byte, hash interface{}) []byte
+ var fn func(pass []byte, hash any) []byte
switch e.enc {
case "sha1":
fn = CryptEncoderSHA1