aboutsummaryrefslogtreecommitdiff
path: root/sqlite3_func_crypt.go (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Build with "go tool" and hackishly bundle code from same package into one ↵EuAndreh2024-08-121-120/+0
| | | | file each
* update go version to 1.19Yasuhiro Matsumoto2024-01-251-12/+12
|
* Fix misspell issues.Mario Trangoni2018-11-211-2/+2
| | | | | | | | | | | See, $ gometalinter --vendor --disable-all --enable=misspell ./... sqlite3.go:1379:45:warning: "succesfully" is a misspelling of "successfully" (misspell) sqlite3.go:1390:30:warning: "registerd" is a misspelling of "registered" (misspell) sqlite3_func_crypt.go:16:27:warning: "ceasar" is a misspelling of "caesar" (misspell) sqlite3_func_crypt.go:43:59:warning: "Ceasar" is a misspelling of "Caesar" (misspell) sqlite3_opt_userauth_test.go:450:27:warning: "succesful" is a misspelling of "successful" (misspell) sqlite3_opt_userauth_test.go:456:27:warning: "succesful" is a misspelling of "successful" (misspell)
* Mention correct algorithm in function docs.Israel G. Lugo2018-09-161-4/+4
| | | CryptEncoder SHA384 and SHA512 variants (with and without salt) were incorrectly documented as using SHA256.
* ADD: User Authentication Password EncodersGert-Jan Timmer2018-06-051-0/+120
Allow user to choose how to encode passwords with connection string overrides of embedded `sqlite_crypt` function.