Hi Guys,
In my country, we have a LGPD(General Protection data Law) that is demanding us to encrypt data. When we were using ADSSERVER, we used to work with encryption just doing AdsEnableEncryption("PSW") in the main program. Is there any way to do the same with MySql ? Is it possible ?
Search found 23 matches: adsenableencryption
Searched query: adsenableencryption
- Mon Sep 09, 2024 1:44 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: MySql and Encryption
- Replies: 6
- Views: 1174
- Tue Aug 25, 2020 6:54 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Con la duda aun, Harbour 3.0.0 ó 3.2.0?
- Replies: 2
- Views: 896
Con la duda aun, Harbour 3.0.0 ó 3.2.0?
... RDDADS.LIB|adsfunc
Error: Unresolved external 'AdsGetFilter' referenced from I:\HARBOUR\LIB\RDDADS.LIB|adsfunc
Error: Unresolved external 'AdsEnableEncryption' referenced from I:\HARBOUR\LIB\RDDADS.LIB|adsfunc
Error: Unresolved external 'AdsDisableEncryption' referenced from I:\HARBOUR\LIB\RDDADS ...
Error: Unresolved external 'AdsGetFilter' referenced from I:\HARBOUR\LIB\RDDADS.LIB|adsfunc
Error: Unresolved external 'AdsEnableEncryption' referenced from I:\HARBOUR\LIB\RDDADS.LIB|adsfunc
Error: Unresolved external 'AdsDisableEncryption' referenced from I:\HARBOUR\LIB\RDDADS ...
- Mon Aug 22, 2016 10:26 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: ADS function list
- Replies: 19
- Views: 4918
Re: ADS function list
... TRUE','APPEND_FAIL',NULL); END WHILE; CLOSE EncryptTables;
Notice the script above uses an ADS Store Procedure. You could also use ADSEnableEncryption() + AdsEncryptTable() API functions, as in:
( cAlias )->( AdsEnableEncryption( "EncryptionPassword" ) )( cAlias ...
Notice the script above uses an ADS Store Procedure. You could also use ADSEnableEncryption() + AdsEncryptTable() API functions, as in:
( cAlias )->( AdsEnableEncryption( "EncryptionPassword" ) )( cAlias ...
- Sun Nov 08, 2015 2:35 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: HowTo ADS from (x)Harbour
- Replies: 14
- Views: 3430
Re: HowTo ADS from (x)Harbour
... 16 ];
UNSIGNED16 usLen = sizeof( pucFormat );
la que uso HB_BOOL hb_ads_bOEM = HB_FALSE;
la otra
BOOL hb_ads_bOEM = FALSE;
HB_FUNC( ADSENABLEENCRYPTION )
{
const char * pucPassword = hb_parcx( 1 );
if( strlen( pucPassword ) )
HB_FUNC( ADSENABLEENCRYPTION )
{
const char * pucPassword ...
UNSIGNED16 usLen = sizeof( pucFormat );
la que uso HB_BOOL hb_ads_bOEM = HB_FALSE;
la otra
BOOL hb_ads_bOEM = FALSE;
HB_FUNC( ADSENABLEENCRYPTION )
{
const char * pucPassword = hb_parcx( 1 );
if( strlen( pucPassword ) )
HB_FUNC( ADSENABLEENCRYPTION )
{
const char * pucPassword ...
- Wed Jan 21, 2015 3:34 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: xharbour AdsEnableEncryption Error
- Replies: 1
- Views: 447
Re: xharbour AdsEnableEncryption Error
This time, problem seems not to become solution though was.
https://groups.google.com/forum/#!searc ... HdRb20jK4J
https://groups.google.com/forum/#!searc ... HdRb20jK4J
- Wed Jan 21, 2015 3:31 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: xharbour AdsEnableEncryption Error
- Replies: 1
- Views: 447
xharbour AdsEnableEncryption Error
... occurs.
REQUEST ADS
REQUEST DBFCDX
RDDSetDefault ("ADS")
SET SERVER LOCAL
SET FILETYPE TO CDX
Use abcd.dbf New Alias abcd Via "ADS"
AdsEnableEncryption("myPassword")
AdsEncryptTable()
If execute it, lower part error occurs.
*Error DBCMD/2001 Workarea not in use: ADSENABLEENCRYPTION
Called ...
REQUEST ADS
REQUEST DBFCDX
RDDSetDefault ("ADS")
SET SERVER LOCAL
SET FILETYPE TO CDX
Use abcd.dbf New Alias abcd Via "ADS"
AdsEnableEncryption("myPassword")
AdsEncryptTable()
If execute it, lower part error occurs.
*Error DBCMD/2001 Workarea not in use: ADSENABLEENCRYPTION
Called ...
- Tue Feb 25, 2014 9:12 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Ads encryption
- Replies: 0
- Views: 393
Ads encryption
Hi,
I'm converting a app to Advantage Database Server.
I' using free table connection with AdsEnableEncryption in each table.
Evertything works ok.
The problem is now with crystal reports 11 because I dont know the connection property in order to pass the encryption password to acess tables and ...
I'm converting a app to Advantage Database Server.
I' using free table connection with AdsEnableEncryption in each table.
Evertything works ok.
The problem is now with crystal reports 11 because I dont know the connection property in order to pass the encryption password to acess tables and ...
- Sat Dec 07, 2013 9:46 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Any other encryption system besides Blowfish?
- Replies: 6
- Views: 2257
Re: Any other encryption system besides Blowfish?
... a client application depends on the data access mechanism you are using. For example, if you are using the ACE API, you must make a call to AdsEnableEncryption (for Advantage tables) or AdsStmtSetTablePassword (for executing SQL statements against the table), passing the table name or handle and the ...
- Fri Jul 29, 2011 11:43 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: ADS function list
- Replies: 19
- Views: 4918
Re: ADS function list
UWE thx for reply BUT it is not what I want....
I want ADS function list, that is contained in ACE32.DLL OR ACE32.LIB if already converted.
Sample: ADSEncryptTable(), ADSDecryptTable(), AdsEnableEncryption(), etc...
I want ADS function list, that is contained in ACE32.DLL OR ACE32.LIB if already converted.
Sample: ADSEncryptTable(), ADSDecryptTable(), AdsEnableEncryption(), etc...
- Wed Sep 01, 2010 11:14 am
- Forum: FiveWin para Harbour/xHarbour
- Topic: duda con AdsEnableEncryption
- Replies: 3
- Views: 597
Re: duda con AdsEnableEncryption
Gracias Ariel, voy a probar eso
lo qie si probe es abrir una base de datos sin encryptar usando AdsEnableEncryption("passw") y la abre perfectamente, es decir ads ya se da cuenta que no esta encriptada y no pasa nada
Manuel Calero Solís, mi email es postinelli@hotmail.com
Pablo
lo qie si probe es abrir una base de datos sin encryptar usando AdsEnableEncryption("passw") y la abre perfectamente, es decir ads ya se da cuenta que no esta encriptada y no pasa nada
Manuel Calero Solís, mi email es postinelli@hotmail.com
Pablo
- Tue Aug 31, 2010 11:57 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: duda con AdsEnableEncryption
- Replies: 3
- Views: 597
Re: duda con AdsEnableEncryption
Hola,
podes chequear asi :
1) abres el archivo
2) if (cAlias)->( AdsIsTableEncrypted() )
? "Tabla encriptada"
else
? "Tabla sin encriptar"
endif
Espero te sirva.
Salu2, Ariel.
podes chequear asi :
1) abres el archivo
2) if (cAlias)->( AdsIsTableEncrypted() )
? "Tabla encriptada"
else
? "Tabla sin encriptar"
endif
Espero te sirva.
Salu2, Ariel.
- Tue Aug 31, 2010 10:23 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: duda con AdsEnableEncryption
- Replies: 3
- Views: 597
Re: duda con AdsEnableEncryption
Estoy intentando como tu probar a migrar a ADS pero tengo algunos problemas.
Me gustaria comentar contigo por mail privado.
Mi mail es watchdog@telefonica.net
Gracias.
Manuel Calero Solís.
Me gustaria comentar contigo por mail privado.
Mi mail es watchdog@telefonica.net
Gracias.
Manuel Calero Solís.
- Tue Aug 31, 2010 11:55 am
- Forum: FiveWin para Harbour/xHarbour
- Topic: duda con AdsEnableEncryption
- Replies: 3
- Views: 597
duda con AdsEnableEncryption
Hola, estoy pasando mis bases de datos DBF/CDX al RDD de ADS en forma local y la idea es utilizar la funcion AdsEnableEncryption y me surgio la siguiente duda, es posible determinar si una DBF ya está encriptada?
digamos quiero hacer algo asi
Use Database Shared New
if .not. DBFencryp ...
digamos quiero hacer algo asi
Use Database Shared New
if .not. DBFencryp ...
- Sun Dec 20, 2009 3:31 pm
- Forum: All products support
- Topic: Erro RDDADS
- Replies: 3
- Views: 3664
Erro RDDADS
... adsfunc
Error: Unresolved external 'AdsGetFilter' referenced from C:\FIVETECH\XHARBOUR\LIB\RDDADS.LIB|adsfunc
Error: Unresolved external 'AdsEnableEncryption' referenced from C:\FIVETECH\XHARBOUR\LIB\RDDADS.LIB|adsfunc
Error: Unresolved external 'AdsDisableEncryption' referenced from C:\FIVETECH ...
Error: Unresolved external 'AdsGetFilter' referenced from C:\FIVETECH\XHARBOUR\LIB\RDDADS.LIB|adsfunc
Error: Unresolved external 'AdsEnableEncryption' referenced from C:\FIVETECH\XHARBOUR\LIB\RDDADS.LIB|adsfunc
Error: Unresolved external 'AdsDisableEncryption' referenced from C:\FIVETECH ...
- Tue Jun 16, 2009 2:12 am
- Forum: FiveWin para Harbour/xHarbour
- Topic: Opcion para DBF's
- Replies: 1
- Views: 440
Re: Opcion para DBF's
Andres,
si usas ADS Local/Server/Internet ( es lo mismo pa´ todas ) debes hacer :
USE midbf ALIAS mialias SHARED NEW
AdsEnableEncryption( cTuClavedeEncriptado )
....
....
nada mas lo usas como siempre, ahora esto es para cuando ya tienes la tabla encryptada, para encryptar/desencryptar :
USE midbf ...
si usas ADS Local/Server/Internet ( es lo mismo pa´ todas ) debes hacer :
USE midbf ALIAS mialias SHARED NEW
AdsEnableEncryption( cTuClavedeEncriptado )
....
....
nada mas lo usas como siempre, ahora esto es para cuando ya tienes la tabla encryptada, para encryptar/desencryptar :
USE midbf ...