• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

加密和解密数字和.NET

用户头像
it1352
帮助1

问题说明

什么是(用C#)可与.NET加密技术。我这里有一个数字值,我想要加密的字符串重新presentation。哪一个已解密的支持?

What are Encryption techniques available with .NET (using C#). I have a numeric value with me which I want to encrypt to a string representation. Which one has decrypting support ?

正确答案

#1

加密(这是由.NET框架/ BCL提供的,而不是C#语言)通常适用于字节。但是,这是罚款;数字是很容易重新present为字节,输出字节可以通过 Convert.ToBase64String 写一个字符串。

Encryption (which is provided by the .NET framework / BCL, not C# the language) typically works on bytes. But that is fine; numbers are easy to represent as bytes, and the output bytes can be written as a string via Convert.ToBase64String.

所以,所有的人,间接......

So "all of them, indirectly"...

请参阅 System.Security.Cryptography 在MSDN

See System.Security.Cryptography on MSDN

(重新解密:一个的加密的进行解密;一个的的不能(希望),所以只要你不看散列函数,你应该精)

(re decrypting: an encryption can be decrypted; a hash cannot (hopefully); so as long as you don't look at hashing functions, you should be fine)

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhcebfgc
系列文章
更多 icon
同类精品
更多 icon
继续加载