diff options
author | mattn <mattn.jp@gmail.com> | 2018-11-22 01:46:04 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-22 01:46:04 +0900 |
commit | 0a64ab220b84d82bfcaef4f89c542b033a1ff997 (patch) | |
tree | 1bcedda7bee49ef07d3d0ed419796a298f8536a8 /sqlite3_func_crypt.go | |
parent | Merge pull request #664 from bk521234/patch-1 (diff) | |
parent | upgrade/package.go: Fix golint issue (diff) | |
download | golite-0a64ab220b84d82bfcaef4f89c542b033a1ff997.tar.gz golite-0a64ab220b84d82bfcaef4f89c542b033a1ff997.tar.xz |
Merge pull request #665 from mjtrangoni/fix-gometalinter-issues
Fix gometalinter issues
Diffstat (limited to 'sqlite3_func_crypt.go')
-rw-r--r-- | sqlite3_func_crypt.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sqlite3_func_crypt.go b/sqlite3_func_crypt.go index d397c8c..afd9333 100644 --- a/sqlite3_func_crypt.go +++ b/sqlite3_func_crypt.go @@ -13,7 +13,7 @@ import ( // This file provides several different implementations for the // default embedded sqlite_crypt function. -// This function is uses a ceasar-cypher by default +// This function is uses a caesar-cypher by default // and is used within the UserAuthentication module to encode // the password. // @@ -40,7 +40,7 @@ import ( // password X, sqlite_crypt(X,NULL) is run. A new random salt is selected // when the second argument is NULL. // -// The built-in version of of sqlite_crypt() uses a simple Ceasar-cypher +// The built-in version of of sqlite_crypt() uses a simple Caesar-cypher // which prevents passwords from being revealed by searching the raw database // for ASCII text, but is otherwise trivally broken. For better password // security, the database should be encrypted using the SQLite Encryption |