Oleg Ageev
- Total activity 10
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 4
-
Created String truncated in debug
In time of debug of following code:#include <stdio.h>#include <stdlib.h>#include "bcrypt.h"int main() { static char hash[BCRYPT_HASHSPACE]; if (crypt_newhash("password", "blowfish,4", hash, ... -
-
Created Why debug so slowly?
Example: #include <stdio.h> #include <time.h>int main() { char buffer[1024]; time_t start = time(NULL); fgets(buffer, sizeof buffer, stdin); // breakpoint printf("%.0f\n", difftime(time(NULL),... -