Site Map Contact Us Home
E-mail Newsletter
Subscribe to get informed about
Clever Components news.

Your Name:
Your Email:
 
SUBSCRIBE
 
Previous Newsletters
 




Products Articles Downloads Order Support
Customer Portal      

Encryptor

Features | Detailed Description

The Encryptor is a component from the Clever Internet Suite library.

It can be used to Encrypt / Decrypt and digitally Sign / Verify files, streams or bytes with any of security algorithm that is supported by the selected Microsoft Cryptographic Service Provider.

This component is used by S/MIME Message for protecting the message content.

Available in VCL edition.

Features:

  • Encrypt/Decrypt, Sign/Verify data
  • x509 certificates support
  • Enveloping the signed and encrypted data
  • Event notification about encryption Progress
  • Free one year upgrades and support

Encrypt and decrypt files in just few lines of code

// [Delphi]
source := TFileStream.Create('OriginalFile.zip', fmOpenRead);
dest := TFileStream.Create('EncryptedFile.dat', fmCreate);
try
   clEncryptor1.EncryptStore := 'ADDRESSBOOK';
   clEncryptor1.EncryptCertificate := 'recipient @ domain.com';
   clEncryptor1.Encrypt(source, dest);
finally
   dest.Free();
   source.Free();
end;

Samples, including WinForm clients with full source code

Please see the Demos code (EncryptDecrypt) and also the indexed Help documentation provided with the Clever Internet Suite installation to learn more about using this component in your application.

Includes support for Delphi and C++Builder.

Complete Delphi source code

When Purchasing the Clever Internet Suite you receive the full sources for all suite components and also free unlimited support.

Interested?

    Copyright © 2000-2024