Posts by Mutha • 25 points
4 posts
-
0
votes1
answer256
viewsQ: User authentication service for desktop applications?
I’m developing a desktop application in Delphi, but I don’t intend to build the part that controls user access by not knowing this part very well and limited time. would like to use an online…
-
1
votes3
answers122
viewsQ: Is authenticating users through a form with database connection safe with crackers?
I would like to authenticate my program users using a form with connection to an sql server database but I don’t know if it is a safe way against unauthorized copies. The authentication will be done…
-
0
votes0
answers97
viewsQ: Encryptar/Decryptar strings with Delphi
For knowledge purposes, I would like to create my own not very complex function to encrypt and decrypt program strings. I got this piece of code from the Internet s1[1] := Char((Byte(s1[1]) shl 4)…
-
1
votes1
answer353
viewsQ: Regex - Regular Expression to get a text block
How would a regex capture the block of declosed variables in a Delphi unit ? The closest I’ve come to this is using this var[^=]*[^\)]; but without success. var Variavel1 : string; Variavel2,…