On Wed, Jan 22, 2003 at 04:20:37PM -0600, Joel Daniels wrote:

> The "openssl req" command, when set up to prompt for the Distinguished Name,
> uses fgets() to read the Distinguished Name fields.  This means that if
> someone uses the backspace key, a 0x08 character is inserted wherever they
> typed the backspace key.

If the backspace key results in a 0x08 character and this is not what
you want, then you should either call

     stty erase '^h'

before starting

     openssl req ...

or reconfigure the keyboard so that the backspace key sends 0x7f (DEL)
instead.  This has nothing to do with OpenSSL; you'll observer the
same behaviour if you run, say, 'cat'.


-- 
Bodo M�ller <[EMAIL PROTECTED]>
PGP http://www.informatik.tu-darmstadt.de/TI/Mitarbeiter/moeller/0x36d2c658.html
* TU Darmstadt, Theoretische Informatik, Alexanderstr. 10, D-64283 Darmstadt
* Tel. +49-6151-16-6628, Fax +49-6151-16-6036
______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
Development Mailing List                       [EMAIL PROTECTED]
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to