Search found 34 matches: protecting

Return to advanced search

Re: Backups into blu rays

Elvira,
have you seen my post?

One effective system for protecting data against ransomware is using an Offline Backup system.
Here's how it works:

viewtopic.php?f=3&t=37383&start=0&hilit=backup

Best regards,
Otto
by Otto
Mon Jan 01, 2024 10:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Backups into blu rays
Replies: 20
Views: 3390

Re: Protecting certain functions to be used

simpler: function Main()   local pFunPtr := HB_Protect( "memoWrit" )   memoWrit()   // later on   // HB_Unprotect( "memoWrit", pFunPtr )return nil#pragma BEGINDUMP#define _HB_API_INTERNAL_#include <hbvmpub.h>ex...
by Antonio Linares
Wed May 03, 2023 6:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Protecting certain functions to be used
Replies: 6
Views: 349

Re: Protecting certain functions to be used

I just realized that scope.pointer is member of an union and not a member of a struct, so modifying scope.pointer will be affecting the scope of the symbol. This would be the right way to do it: function Main()   local pFunPtr := HB_Protect( "memoWrit" )  &nb...
by Antonio Linares
Wed May 03, 2023 6:44 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Protecting certain functions to be used
Replies: 6
Views: 349

Re: Protecting certain functions to be used

Gracias Paco, versión simplificada: function Main()   HB_Protect( { "memoWrit" } )   memoWrit()return nil#pragma BEGINDUMP#define _HB_API_INTERNAL_#include <hbvmpub.h>extern HB_EXPORT HB_SIZE hb_parinfa( int iParamNum, HB_SIZE...
by Antonio Linares
Tue May 02, 2023 7:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Protecting certain functions to be used
Replies: 6
Views: 349

Re: Protecting certain functions to be used

Muchísimas gracias. Grandisimo aporte Antonio
Recuerdo, creo que en el foro de harbour users, una vez alguien pidió exactamente esto mismo
by paquitohm
Tue May 02, 2023 6:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Protecting certain functions to be used
Replies: 6
Views: 349

Re: Protecting certain functions to be used

Simpler and Harbour generates an error as the functions becomes undefined, even if the functions are linked. Once Unprotect()ed they become available again :-) function Main()   Protect( { "FErase" } )   FErase()return nil#pragma BEGINDUMP#define _HB_API_I...
by Antonio Linares
Tue May 02, 2023 6:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Protecting certain functions to be used
Replies: 6
Views: 349

Re: Protecting certain functions to be used

Enhanced version: functions Protect() and UnProtect() extern Dummyfunction Main()   Protect( { "Test" } )   ? Test()   UnProtect( { "Test" } )   ? Test()return nilfunction Test(...
by Antonio Linares
Tue May 02, 2023 4:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Protecting certain functions to be used
Replies: 6
Views: 349

Protecting certain functions to be used

If you allow your users to define and execute a macro or use the runtime Harbour compiler (hbcplr.lib), sometimes you may want to avoid the use of certain Harbour functions. This code allows you to protect the symbols that you don't want to be used: Fill the array { "QOut" } to include all...
by Antonio Linares
Tue May 02, 2023 9:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Protecting certain functions to be used
Replies: 6
Views: 349

Re: Possible to change gradient-directions in xBrowse ?

... change in xBrowse the pensize can be defined :!: http://www.pflegeplus.com/IMAGES/gradpaint6.jpg oCol:bClrSelFocus := oCol:bClrStd protecting the gradient-field http://www.pflegeplus.com/IMAGES/gradpaint7.jpg Best regards Uwe :D
by ukoenig
Fri Nov 01, 2019 3:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Possible to change gradient-directions in xBrowse ?
Replies: 4
Views: 795

Re: Google Cloud Platform

... attack carried on by a ransomware. According to those (last night) news, it is using an algorithm developed by NSA: yes, those ones that are 'protecting' us from the bad guys. The very same that demanded a backdoor to Apple to access a terrorist iphone are 'the fathers of the baby'. But, in ...
by Carlos Mora
Tue May 16, 2017 6:02 am
 
Forum: Off Topic / Otros temas
Topic: Google Cloud Platform
Replies: 8
Views: 4075

Re: SmartCard reader and Fivewin

... credit card processing companies. It's quite simple, very secure, and our clients never have to worry about all of the legal requirements for protecting the credit card data itself. Tim
by TimStone
Fri Apr 07, 2017 4:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SmartCard reader and Fivewin
Replies: 8
Views: 2192

Re: FWH 16.06: MariaDb/MySql Backup and Restore (Updated 17.03)

... possible to encrypt the backup files, with a key specified by the user. When encrypted, the backed up data is not in human readable form thereby protecting sensitive data from being accessed by unauthorized persons. It may be noted that the backup data is not encrypted after creation of the file, ...
by nageswaragunupudi
Tue Mar 07, 2017 6:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 16.06: MariaDb/MySql Backup and Restore (Updated 16.08)
Replies: 48
Views: 20531

Re: protecting an app for illigal copying

Hello Antonio,

Both var give D as Valtype. The problem is solved by adding this setting at the top of the program:

SET DATE FORMAT TO 'dd-mm-yyyy'

Now I can calculate with the dates. :D

René
by plantenkennis
Wed Nov 16, 2016 7:07 pm
 
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: protecting an app for illigal copying
Replies: 16
Views: 6086

Re: protecting an app for illigal copying

René,

Please check those values:

MsgInfo( nDays, ValType( nDays ) )
MsgInfo( dDate, ValType( dDate ) )

nDays := nDays-(DATE()-dDate)
by Antonio Linares
Wed Nov 16, 2016 7:47 am
 
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: protecting an app for illigal copying
Replies: 16
Views: 6086
Next

Return to advanced search