NetTalk Central

Author Topic: May I use Cryptonite in NetWebBrowse?  (Read 2236 times)

Manuel

  • Newbie
  • *
  • Posts: 41
    • View Profile
May I use Cryptonite in NetWebBrowse?
« 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 


kevin plummer

  • Hero Member
  • *****
  • Posts: 1195
    • View Profile
    • Production Accounting and Software Payroll
Re: May I use Cryptonite in NetWebBrowse?
« Reply #1 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

Bruce

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 11204
    • View Profile
Re: May I use Cryptonite in NetWebBrowse?
« Reply #2 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

Manuel

  • Newbie
  • *
  • Posts: 41
    • View Profile
Re: May I use Cryptonite in NetWebBrowse?
« Reply #3 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