Search found 209 matches: protect

Return to advanced search

Re: Class TOpenAI_ChatGPT by Charles Kwon

... is https. In other words, there is no risk of leakage of cKey because the communication is encrypted. However, if you want to use encryption to protect your key locally, you can encrypt and store your key and decrypt the key before calling OpenAI. Luckily, fivewin already has encrypt() and decrypt() ...
by CharlesKwon
Thu Feb 01, 2024 12:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Class TOpenAI_ChatGPT by Charles Kwon
Replies: 3
Views: 473

Protect PDF using TPrinter

I'm trying to protect a pdf file generated using Tprinter and avoid edition.

It there a way to do that ??

Thanks for the help.
by dbfer92
Fri Jun 16, 2023 8:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Protect PDF using TPrinter
Replies: 0
Views: 168

TEdit on the RibbonBar

Hi, I put the TEdit control on the RibbonBar. Everything works fine as long as the mouse cursor is on the RibbonBar, otherwise TEdit is cleared. To protect myself from this I do: oEdt:bChange:={|nKey,flfg,oEdt|oEdt:VarPut(oEdt:cText())} However, Var Put (oEdt:text()) takes ...
by Natter
Sat Jun 10, 2023 12:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TEdit on the RibbonBar
Replies: 0
Views: 138

Re: XBROWSE : Seek(), OrdwildSeek() and "increment"

Good idea. We will try to protect some more methods/datas.
Still we can not do it for all because some methods/datas are used both by the browse object and column object.

There are lots of examples of xbrowse in the forums and lastly we are always here to support you in every way.
by nageswaragunupudi
Mon May 08, 2023 1:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE : Seek(), OrdwildSeek() and "increment"
Replies: 3
Views: 278

Re: XBROWSE : Seek(), OrdwildSeek() and "increment"

hi

thx for Anwser

i´m still a Newbie and it is hard to learn when have no Documentation or Sample CODE

what do you think to declare Method as "PROTECT" if User should not use a Method "direct<"
by Jimmy
Mon May 08, 2023 12:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE : Seek(), OrdwildSeek() and "increment"
Replies: 3
Views: 278

Re: Protecting certain functions to be used

Enhanced version: functions Protect() and UnProtect() extern Dummyfunction Main()   Protect( { "Test" } )   ? Test()   UnProtect( { "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: 350

Protecting certain functions to be used

... 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 the symbols that you want to protect. Next version ...
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: 350

Re: View deleted records in xBrowse

... again. What would be helpful is if we could isolate the deleted to the tDatabase class. For now, I will play with this to see if I can better protect it.
by TimStone
Thu Dec 15, 2022 10:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: View deleted records in xBrowse
Replies: 8
Views: 702

New file format

I saved a table in an ascii file with the separator character "," or ";" but I would like to protect this file and create a particular and personalized format that no one could reopen but me with my little program of course I need the save function and to load ...
by Silvio.Falconi
Sun Nov 20, 2022 11:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: New file format
Replies: 10
Views: 727

Re: How install Harbour on web server

Dear Otto, I have asked Bruno Cantero to explain here how to set that second router that will protect our personal networks from the outside world. Once we know how to do that for sure, then we may advise FWH users to use their own networks. I believe the security here ...
by cnavarro
Wed Sep 14, 2022 1:54 am
 
Forum: mod_harbour
Topic: How install Harbour on web server
Replies: 26
Views: 4989

Re: How install Harbour on web server

Dear Otto,

I have asked Bruno Cantero to explain here how to set that second router that will protect our personal networks from the outside world.

Once we know how to do that for sure, then we may advise FWH users to use their own networks.

I believe the security here is the top most priority.
by Antonio Linares
Sun Sep 11, 2022 10:03 am
 
Forum: mod_harbour
Topic: How install Harbour on web server
Replies: 26
Views: 4989

Re: How install Harbour on web server

... your emails, your data, your privacy. Opening your router is quite risky unless you know exactly what you are doing and you perfectly know how to protect yourself. A hacker may get into your network and sniff your bank activity, personal files, he may encrypt all your files and ask money for them, ...
by Antonio Linares
Sun Sep 11, 2022 8:52 am
 
Forum: mod_harbour
Topic: How install Harbour on web server
Replies: 26
Views: 4989

Re: How code obfuscation helps protect application data

Marco Here is a screen shot of a Customer table in Sql .. not that much different than .DBf .. I am not saying one could probably de-encrypt the encryption algorithm given enough time, but most ransom crooks don't want to spend the time to de-encrypt the data .. to them, they just want the EASY and ...
by Rick Lipkin
Tue May 17, 2022 4:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How code obfuscation helps protect application data
Replies: 11
Views: 1368

Re: How code obfuscation helps protect application data

Rick and Otto, in your opinion a dbfcdx table encrypted with and populated LOCAL cPassword := "12345678" SELECT 0 USE customers DBINFO( DBI_PASSWORD, cPassord ) can a skilled hacker to decode the content of customers.dbf ? perhaps even knowing the clipper world (dbfcdx = clipper) by downlo...
by MarcoBoschi
Tue May 17, 2022 10:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How code obfuscation helps protect application data
Replies: 11
Views: 1368

Re: How code obfuscation helps protect application data

To All I Too use Aspack ... the only problem with that is the data is still vulnerable .. Aspack only compresses the .EXE and does nothing for the data .. If I were a "for ransom" crook .. I would care les about the executable .. I would want to steal the data and if not encrypted .. you b...
by Rick Lipkin
Mon May 16, 2022 3:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How code obfuscation helps protect application data
Replies: 11
Views: 1368
Next

Return to advanced search