Open encryption standards are best for security and privacy most of the time. Pretty Good Privacy (PGP) standard specifies encryption formats to facilitate private messaging capabilities for email and other message encryption.
IPWorks OpenPGP is a complete set of components for email encryption and document protection. IPWorks OpenPGP implements the OpenPGP standard for encryption and decryption and includes support for OpenPGP key creation and management.
IPWorks OpenPGP Features
- Enterprise-Grade components
- Encrypt, decrypt, sign and verify via OpenPGP
- Solid components to utilize
- Support for string hashing and encryption algorithms
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
procedure TFormOpenPGP.btnEncryptClick(Sender: TObject); begin if (Length(cboRecipientKeys.Text) <= 0) then begin ShowMessage('Please select a recipient key.'); Exit; end; pgp.InputMessage := txtDecryptedString.Text; pgp.RecipientKeyCount := 1; pgp.RecipientKeyKeyring[0] := txtKeyringDir.Text; pgp.RecipientKeyUserId[0] := cboRecipientKeys.Text; pgp.ASCIIArmor := true; pgp.Encrypt(); txtEncryptedString.Text := pgp.OutputMessage; end; |
When you install IPworks OpenPGP it comes with several demo applications which show you how to utilize all the functionalities of the OpenPGP library.
Be sure to head over and check out the IPWorks OpenPGP Library on GetIt portal and download it from the IDE
Design. Code. Compile. Deploy.
Start Free Trial Upgrade Today
Free Delphi Community Edition Free C++Builder Community Edition