[fpc-pascal] encryption and decryption

2012-06-22 Thread Rainer Stratmann
Does someone know how to do encryption and decryption with keys? ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] encryption and decryption

2012-06-22 Thread Jorge Aldo G. de F. Junior
Theres a blowfish encryption system in freepascal http://www.freepascal.org/docs-html/fcl/blowfish/index.html 2012/6/22 Rainer Stratmann : > Does someone know how to do encryption and decryption with keys? > ___ > fpc-pascal maillist  -  fpc-pascal@list

Re: [fpc-pascal] encryption and decryption

2012-06-22 Thread silvioprog
2012/6/22 Jorge Aldo G. de F. Junior : > Theres a blowfish encryption system in freepascal > > http://www.freepascal.org/docs-html/fcl/blowfish/index.html > > 2012/6/22 Rainer Stratmann : >> Does someone know how to do encryption and decryption with keys? Hellow guys, How to use TBlowFishEnCryptS

Re: [fpc-pascal] encryption and decryption

2012-06-23 Thread Michael Van Canneyt
On Fri, 22 Jun 2012, silvioprog wrote: 2012/6/22 Jorge Aldo G. de F. Junior : Theres a blowfish encryption system in freepascal http://www.freepascal.org/docs-html/fcl/blowfish/index.html 2012/6/22 Rainer Stratmann : Does someone know how to do encryption and decryption with keys? Hellow

Re: [fpc-pascal] encryption and decryption

2012-06-23 Thread silvioprog
2012/6/23 Michael Van Canneyt : [...] > The testbf.pp program in fcl-base/examples shows how to use it. > > It's very simple, really. Just create an encryption stream, and write the > data you want to see encrypted to this stream. > The output of the stream is the encrypted data. > > Michael. I sa