NetTalk Central

NetTalk Web Server => Web Server - Ask For Help => Topic started by: Manuel on April 15, 2013, 08:45:04 AM

Title: May I use Cryptonite in NetWebBrowse?
Post by: Manuel on April 15, 2013, 08:45:04 AM
Hi,

Try to use in Before Browse Loop > After Setting Browse Behavior Settings

 loc:carpetaEncrip = Crypto1.EncryptString(loc:carpetaEncrip,loc:largo,loc:pass). The app hangs

Id“like to encrypt file name to download form memory file NetWebbrowse. Have to do it at window procedure?

Thanks
Manuel 

Title: Re: May I use Cryptonite in NetWebBrowse?
Post by: kevin plummer on April 15, 2013, 04:10:49 PM
test your code on a form to narrow down if it is the browse or your syntax/cryptonite setup. It could be you are missing some files are your app doesn't have access to the MS Cypto API etc
Title: Re: May I use Cryptonite in NetWebBrowse?
Post by: Bruce on April 16, 2013, 12:14:04 AM
you should be able to use it -
however in the current build you may need to set all the "multi dll" settings for cryptonite (and stringtheory) OFF,
I'm in the process of testing new builds which will allow these settings to be set correctly, but there are reports that the current StringTheory especially is having problems in multi dll mode.

cheers
Bruce
Title: Re: May I use Cryptonite in NetWebBrowse?
Post by: Manuel on April 16, 2013, 08:25:18 AM
Solved. Have to add "Active String Theory" to global extensions.

------
 loc:carpetaEncrip = Crypto1.EncryptString(loc:carpetaEncrip,loc:largo,loc:pass) returns 0

The correct sentence is 
Crypto1.EncryptString(loc:carpetaEncrip,loc:largo,loc:pass)

Thanks
Manuel