I have an ini file with entries about login values.
The password is encrypted using the function HB_Crypt().
It drove me crazy to list the ini file with xbrowse because it always crashed.
Finally I found out that the characters 0x12 and 0x19 in the encryptd string caused xbrowse to fail.
Here my test with FWH 22.11 and xharbour
- Code: Select all Expand view
- #include "fivewin.ch"
#include "xbrowse.ch"
FUNCTION Main()
local aIni := {;
"User=administrator",;
"Pwd=”¹J±¡óí´*+¾²ïI¡²w4|L[¿ƒ¸»[uÑÙº‚»E;0¾üøÀ";
}
MsgInfo( len( aIni ) )
xBrowser aIni
RETURN nil