¡@

Home 

c# Programming Glossary: certs

Java implementation of C# SignedCms

http://stackoverflow.com/questions/11013111/java-implementation-of-c-sharp-signedcms

alias java.util.List certList new ArrayList Store certs new JcaCertStore certList CMSSignedDataGenerator gen new CMSSignedDataGenerator.. builder.build SHA1withRSA pKey cert gen.addCertificates certs CMSTypedData msg new CMSProcessableByteArray text.getBytes CMSSignedData..

Get timestamp from Authenticode Signed files in .NET

http://stackoverflow.com/questions/3281057/get-timestamp-from-authenticode-signed-files-in-net

CertificatePair contains forward and or reverse cross certs public const int CERT_QUERY_CONTENT_CERT_PAIR 13 dwExpectedConentTypeFlags.. CertificatePair contains forward and or reverse cross certs public const int CERT_QUERY_CONTENT_FLAG_CERT_PAIR 1 CERT_QUERY_CONTENT_CERT_PAIR..

How to retrieve certificates from a pfx file with c#?

http://stackoverflow.com/questions/5036590/how-to-retrieve-certificates-from-a-pfx-file-with-c

way to read a pfx file and import the certifcates into the certstore. So far i am able to read the pfx file with X509Certifcate.. there are three certifcates because I manually go into the certstore MMC and import it into a personal folder myself. Any input.. should be able to get a collection object containing the certs in your .pfx file by using the X509Certificate2Collection class...here's..

How do I use WebRequest to access an SSL encrypted site using https?

http://stackoverflow.com/questions/560804/how-do-i-use-webrequest-to-access-an-ssl-encrypted-site-using-https

users may be providing urls to sites that have invalid ssl certs installed. You can ignore those cert problems if you put this..

WCF Authentication with custom ClientCredentials: What is the clientCredentialType to use?

http://stackoverflow.com/questions/563037/wcf-authentication-with-custom-clientcredentials-what-is-the-clientcredentialty

classes. On to the next issue WCF is now ignoring my x509 certs specified in config that were working fine with UserName auth...

Has anyone got any code to call SignerSignEx from C#?

http://stackoverflow.com/questions/6357759/has-anyone-got-any-code-to-call-signersignex-from-c

store.Open OpenFlags.ReadOnly var certs store.Certificates.Find X509FindType.FindByThumbprint thumbnail.. X509FindType.FindByThumbprint thumbnail false if certs.Count 0 throw new Exception string.Format Unable to find certificate.. to find certificate with thumbnail ' 0 ' thumbnail if certs.Count 1 Can this happen throw new Exception string.Format..

Using SSL and SslStream for peer to peer authentication?

http://stackoverflow.com/questions/695802/using-ssl-and-sslstream-for-peer-to-peer-authentication

SERVER_CERT_PASSWORD X509CertificateCollection certs new X509CertificateCollection certs.Add cert sslStream.AuthenticateAsClient.. certs new X509CertificateCollection certs.Add cert sslStream.AuthenticateAsClient serverName certs SslProtocols.Default.. certs.Add cert sslStream.AuthenticateAsClient serverName certs SslProtocols.Default false check cert revokation catch AuthenticationException..