Differences From:
File
src/http.c
part of check-in
[0238e54ff3]
- Client must ignore SIGPIPE when writting to the HTTP socket.
by
drh on
2007-08-01 13:50:58.
[view]
To:
File
src/http.c
part of check-in
[776753118f]
- The nonce of a login card in the sync protocol is now the SHA1 hash
of the remainder of the sync message. The signature is the SHA1 hash
of the concatenation of the nonce and the users password.
by
drh on
2007-09-12 02:25:37.
Also file
src/http.c
part of check-in
[f76192b245]
- Pulled the latest CLI, website, and sqlite changes into the importer branch.
by
aku on
2007-09-17 01:00:32.
[view]
@@ -168,9 +168,9 @@
int cnt = 0;
blob_zero(&nonce);
blob_zero(&pw);
- db_blob(&nonce, "SELECT hex(randomblob(20))");
+ sha1sum_blob(pSend, &nonce);
blob_copy(&pw, &nonce);
blob_zero(&login);
if( g.urlUser==0 ){
user_select();