La Billetterie

Un peu de tout saupoudré délicatement

Affichage des articles dans capi

La page avec les spécifications des mini drivers de carte pour le base CSP de Microsoft : http://msdn.microsoft.com/en-us/windows/hardware/gg487500

L’enrollement dans les dernières générations de Windows, son futur : http://channel9.msdn.com/posts/Certificate-Enrollment-Concepts-and-Protocols-2010

Ce qui est supporté, ce qui marche, et ce qui ne marche pas : http://blogs.technet.com/b/pki/archive/2011/02/08/common-questions-about-sha2-and-windows.aspx Objectif Microsoft avec Windows XP SP3 : Faire fonctionner le SSL client en sha-2; et pas forcément beaucoup plus.

http://msdn.microsoft.com/en-us/library/ms867088.aspx PKCS #12 File Types: Portable Protected Keys in .NET (de Michel I. Gallant) CryptAcquireContext( &m_hProvider, m_wszContainer, AesProviders[m_nIndex].params.lpwsz, AesProviders[m_nIndex].params.dwType, CRYPT_DELETEKEYSET ); ici aussi http://www.jensign.com/JavaScience/dotnet/PFXOpen/code/PfxOpen.cs Example C Program: Using CryptAcquireContext http://msdn.microsoft.com/en-us/library/aa382375(VS.85).aspx http://www.derkeiler.com/Newsgroups/microsoft.public.platformsdk.security/2005-01/0186.html CryptAcquireContext with CRYPT_DELETEKEYSET physically deletes the container and all data associated with it, so to say keys, names etc. http://www.derkeiler.com/Newsgroups/microsoft.public.platformsdk.security/2005-01/0195.html Some CSPs won’t care, […]

Voir cet article pour les interfaces Framework: http://msdn.microsoft.com/en-us/library/ms180945%28VS.80%29.aspx How to: Sign Messages by One Signer : This example creates a CMS/PKCS #7 signed message by using System.Security.Cryptography.Pkcs http://msdn.microsoft.com/en-us/library/ms180956(VS.80).aspx How to: Sign a Message by Multiple Signers : This example creates a CMS/PKCS #7 signed message by using System.Security.Cryptography.Pkcs. http://msdn.microsoft.com/en-us/library/ms180957.aspx Mais – CmsSigner Class Pas supporté […]

Un exemple .Net [StructLayout(LayoutKind.Sequential,CharSet= CharSet.Unicode)] public struct CRYPTUI_VIEWCERTIFICATE_STRUCT { public int dwSize; public IntPtr hwndParent; public int dwFlags; [MarshalAs(UnmanagedType.LPWStr)] public String szTitle; public IntPtr pCertContext; public IntPtr rgszPurposes; public int cPurposes; public IntPtr pCryptProviderData; public Boolean fpCryptProviderDataTrustedUsage; public int idxSigner; public int idxCert; public Boolean fCounterSigner; public int idxCounterSigner; public int cStores; public IntPtr rghStores; […]