PGP Encrypts given String in OpenPGP ASCII armored format.

Namespace:  DidiSoft
Assembly:  PGPLib (in PGPLib.dll) Version: 1.6.3.19546

Syntax

C#
public string EncryptString(
	string stringToEncrypt,
	string publicKeyAscii
)
Visual Basic (Declaration)
Public Function EncryptString ( _
	stringToEncrypt As String, _
	publicKeyAscii As String _
) As String
Visual C++
public:
String^ EncryptString(
	String^ stringToEncrypt, 
	String^ publicKeyAscii
)

Parameters

stringToEncrypt
Type: System..::.String
String to be encrypted
publicKeyAscii
Type: System..::.String
Public key as String in ASCII armored format

Return Value

stringToEncrypt OpenPGP encrypted

Remarks

Compression algorithm used is the one specified through Compression
Symmetric cipher algorithm used is the one specified through Cypher

See Also