Re: [xHarbour-developers] A bug in data encryption

2012-02-16 Thread Enrico Maria Giordano
-Messaggio Originale- Da: "Ella Stern" A: "Enrico Maria Giordano" Cc: "xHarbour Developers Mailing List" Data invio: giovedì 16 febbraio 2012 19.07 Oggetto: Re: [xHarbour-developers] A bug in data encryption > The below code is working as expected.

Re: [xHarbour-developers] A bug in data encryption

2012-02-16 Thread Ella Stern
Hello, On Thu, Feb 16, 2012 at 6:44 PM, Enrico Maria Giordano < e.m.giord...@emagsoftware.it> wrote: > Dear friends, in the following sample you can see that the table TESTCOPY > can't be decrypted using the password of the original table: > > #include "Dbinfo.ch" > > > FUNCTION MAIN() > >DBC

[xHarbour-developers] A bug in data encryption

2012-02-16 Thread Enrico Maria Giordano
Dear friends, in the following sample you can see that the table TESTCOPY can't be decrypted using the password of the original table: #include "Dbinfo.ch" FUNCTION MAIN() DBCREATE( "TESTORIG", { { "TEST", "C", 35, 0 } } ) USE TESTORIG DBINFO( DBI_PASSWORD, "test" ) APPEND B