使用 C# 使用 open ssl 加密/解密

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/1082014/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-06 07:44:49  来源:igfitidea点击:

Encryption / decryption using open ssl using C#

c#openssl

提问by

i am using VS 2005 C# i want to encrypt and decrypt the complete file using OPEN SSL, can anyone help me in this regard.....

我正在使用 VS 2005 C# 我想使用 OPEN SSL 加密和解密整个文件,任何人都可以在这方面帮助我.....

回答by Thorarin

SSL stands for Secure Socket Layer. It has nothing to do with encrypting files, but rather with secure (encrypted) TCP/IP connections. OpenSSL is an open source implementation, but you wouldn't need it on a Windows .NET platform.

SSL 代表安全套接字层。它与加密文件无关,而是与安全(加密)TCP/IP 连接有关。OpenSSL 是一种开源实现,但在 Windows .NET 平台上不需要它。

Take a look at the System.Security.Cryptographynamespace for implementations of some common cyphers that you can use to encrypt your file. AES (symmetric algorithm) and RSA (public key encryption) are both there and widely accepted.

查看System.Security.Cryptography命名空间,了解可用于加密文件的一些常见密码的实现。AES(对称算法)和 RSA(公钥加密)都存在并且被广泛接受。

回答by MiffTheFox

Er... I think you misunderstand what OpenSSL is.

呃...我想你误解了 OpenSSL 是什么。

OpenSSL implements the Secure Socket Layerprotocol for securely transporting data between a client and server via TCP/IP.

OpenSSL 实现了安全套接字层协议,用于通过 TCP/IP 在客户端和服务器之间安全地传输数据。

You should have a look at the classes offered by the System.Security.Cryptographynamespace, even MSDN has a basic tutorial on encrypting files.

您应该查看System.Security.Cryptography命名空间提供的类,甚至MSDN 也有关于加密文件的基本教程

As per working on all platforms, I believe that most, if not all, of the System.Security.Cryptography namespace works on Mono.

根据在所有平台上的工作,我相信 System.Security.Cryptography 命名空间的大部分(如果不是全部)都适用于 Mono

回答by srnayak

Just for clarification you can do encryption and decryption using libcrypto which is a part of OpenSSL. But it will be unnecessary and tedius to use OpenSSL library from C#.NET. As suggested by MiffTheFox, you should be able to do all cryptography stuff using System.Security.Cryptography namespace.

为了澄清起见,您可以使用作为 OpenSSL 一部分的 libcrypto 进行加密和解密。但是从 C#.NET 使用 OpenSSL 库将是不必要和乏味的。正如 MiffTheFox 所建议的,您应该能够使用 System.Security.Cryptography 命名空间执行所有加密操作。

回答by srnayak

OpenSSL Wrapper for .NET: http://openssl-net.sourceforge.net/

.NET 的 OpenSSL 包装器:http: //openssl-net.sourceforge.net/