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      

Certificate Store

Features | Detailed Description

The Certificate Store is a component from the Clever Internet Suite library.
This component is used to manage digital certificates installed on a system.

Available in .NET, VCL and ActiveX editions.

Features:

  • Manage X.509 certificates in Root, Personal and System stores (ROOT, MY, CA)
  • Import / Export to PFX, PKCS 7 encoded Binary data, encrypted email Signature
  • Install / Uninstall certificates
  • Create Self-Signed certificates
  • Search based on certificate email and issuer name
  • Free one year upgrades and support

Obtain all information about certificate in just few lines of code

The most commonly used certificate information (such as Issuer, Serial Number, Start Date and End Date) can be accessed directly via the corresponding component members.
You can always get all interested information by using low-level Microsoft CryptoApi certificate context.

Delphi
certificateStore1.Open('addressbook');

cert := certificateStore1.CertificateByEmail('John@domain.com');
ShowMessage('Issuer: ' + cert.IssuedBy +
   'End Date: ' + DateTimeToStr(cert.ValidTo) +
   'Serial No: ' + cert.SerialNumber);

C#
certificateStore1.Open("addressbook");

Certificate cert = certificateStore1.CertificateByEmail("John@domain.com");
MessageBox.Show("Issuer: " + cert.IssuedBy +
   "End Date: " + cert.ValidTo.ToString() +
   "Serial No: " + cert.SerialNumber);

Samples, including WinForm clients with full source code

Please see the Demos code (CertMgr, SMime, SoapDSIG) 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, C++Builder, C#, VB.NET and Javascript.

Complete Delphi and C# 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