Donate Share

bcrypt - blowfish file encryption

Tracker: Feature Requests

5 Do not echo password in windows - ID: 1821456
Last Update: Attachment added ( somewakko )

Please change the code for keys.c to include the following change to
readString. This prevents it from outputting the key to the console.


#ifdef WIN32
#include "conio.h"
#endif


int i=0;
while(i<MAXKEYBYTES)
{
iKeyBuffer[i] = getch();
if (iKeyBuffer[i] == 0xd ) // enter key
break;
i++;
}
iKeyBuffer[i] = (char)0;




Other than this change, the software is great. Keep up the good work.


Brent ( somewakko ) - 2007-10-28 02:37

5

Open

None

Nobody/Anonymous

Interface Improvements (example)

Next Release (example)

Public


Comments




Log in to comment.

No follow-up comments have been posted.

Attached File ( 1 )

Filename Description Download
keys.c Updated version of keys.c with changes Download

Change ( 1 )

Field Old Value Date By
File Added 251649: keys.c 2007-10-28 02:37 somewakko