PHP Encryption & VB.net Decryption

后端 未结 4 608
有刺的猬
有刺的猬 2021-02-06 13:52

I\'m trying to do a simple task. Encypt a value in PHP and Decrypt it in my VB.net app. I figure I\'d use tripleDES or Rijdael 128 or 256

I though this should be simple

4条回答
  •  渐次进展
    2021-02-06 14:47

    Disclaimer: I've never actually used the Crytography classes in .NET.

    To do Rijndael decryption in .NET, you're probably looking for the System.Security.Cryptography.RijndaelManaged class.

    That page also has some examples of how to use it, although you may also need an instance of RSACryptoServiceProvider... I'm not sure.

提交回复
热议问题