Use of the encryption features in 2.6

2005-10-12 Thread Bill Vlahos
Has anyone published a description of how to use the encryption features of 2.6? I have a program that stores data in custom properties on several cards (major catagories) which I want to encrypt. It would be nice to click a check box to automatically encrypt the entire stack but I don't think

Re: Use of the encryption features in 2.6

2005-10-12 Thread Ken Ray
On 10/12/05 9:14 AM, "Bill Vlahos" <[EMAIL PROTECTED]> wrote: > The docs are pretty clear on what the parameters are but not on how I > would actually implement this in a real program. > > Is there a tutorial somewhere that I missed? Not that I'm aware of, but Dar Scott did a presentation on "Se

Re: Use of the encryption features in 2.6

2005-10-13 Thread Mark Schonewille
Hi Bill, An easy way to encrypt the contents of a field: on mouseUp encrypt fld 1 using blowfish with password "12345678" put the result into rslt if rslt is empty then put it into fld 2 else put rslt into fld 2 end if end mouseUp and decrypt it using on mouseUp decrypt fld