Page 1 of 1
security...
Posted: Tue 09 Aug 2005 19:25
by eduardosic
It´s possible, core lad´s developers, add suport to encriptation data
example: setting the property Encript in the Query, all data is encripted on insert and all data is decripted on selec,, for protect the database.
it´s possible?
sorry my bad english.
Posted: Wed 10 Aug 2005 08:06
by Guest
MyDAC 4.0 supports secure connections encrypted SSL connections with OpenSSL. Please see "Secure connections" and "TMyConnection.SSLOptions" topics in MyDAC help
encrypted data not encrypted connection....
Posted: Wed 10 Aug 2005 13:58
by eduardosic
I suggest a property for encrypted Rows.
example:
setting the "supost" property encryt on TmyQuery
and setting
SQL > Insert into TblNames (Name) values (:name )
with myQuery do begin
Parambyname( 'Name' ).AsString := 'Eduardo S Santos from Brazil';
Execute;
end;
The value for Field "Name" is inserted in the table, but was encripted...
when execute a select ... the TmyQuery , decript and show the row..
resuming:
TmyQuery ofers support a encriptation/decriptation for Rows....
understand?
Thanks, Eduardo S Santos.
Posted: Wed 10 Aug 2005 20:49
by Paul
SSL is a generally used way for traffic encryption suported by MySQL. It can be used for your tasks.
Local Security...
Posted: Wed 10 Aug 2005 23:49
by eduardosic
Paul, i don´t talking about SSL, i asking if its possible core labs Add suport
for a Rows encriptation...
I can send a simple program for explain the sugestion?
this feature is important for protect a comercial database.
more one example
Insert Operation
|User front-end Data| >> |TmyQuery with encriptation| >> | Encrited data in mySQL table|
select Operation
|User front-end Data| << |TmyQuery with decriptation| << | Encrited data in mySQL table|
Thanks, Eduardo.
Posted: Thu 11 Aug 2005 08:18
by GEswin
I would say you're looking for some functionality of MySQL itself, not the components. For encripting data into db and decrypting in selects you must use MySQL's encrypt/decrypt functions. Look at this chapter of MySQL manual:
http://dev.mysql.com/doc/mysql/en/encry ... tions.html
Posted: Thu 11 Aug 2005 09:49
by alec
eduardosic, good question!
To CoreLabTeam:
What about encryption data for local databases (embedded server)? For example, I make database with commercial data (big list of enterprises - 1 million records) and I want protect this data from external use (passing over my interface).
Is any solutions?
Also request: compressing blobs for all *Dac products. Now I use external Zlib library for this aim.
Thank you!
Posted: Fri 12 Aug 2005 08:17
by Paul
We will consider ability to encrypt data befor storing in database in the future MyDAC releases.
Posted: Mon 22 Aug 2005 11:41
by Ikar
This issue concerns most likely MySQL than MyDAC. Implementation of reliable encryption of stored data at the level of client is almost impossible.
Developers of servers (MySQL, MS SQL, Oracle etc) usually assume that data will be stored at the protected disk at the server. Certainly for MySQL Embedded Server it is can be realized rather difficult.
Try to use protected virtual disks like PGP or ask MySQL AB to add this functionality at the next server versions.
Posted: Mon 22 Aug 2005 11:43
by Ikar
> Also request: compressing blobs for all *Dac products. Now I use external Zlib
> library for this aim.
We are planning to add this functionality but not at the nearest time.
Posted: Fri 07 Oct 2005 07:39
by Guest
this feature is important for me
Posted: Fri 07 Oct 2005 14:10
by Ikar
Anonymous wrote:this feature is important for me
Which product do your need it for?