The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
86 views

Problems while trying to Read Binary File C++

I'm writing a simple console application in Visual Studio C++. I want to read a binary file with .cer extension to a byte array. ifstream inFile; size_t size = 0; char* oData = 0; inFile.open(path, ...
0
votes
0answers
96 views

How to use .cer files in Centos

I'm new in linux. Recently we were asked to enable SSL for one of our projects in the sandbox, and I did using with the following command: yum install mod_ssl openssl openssl genrsa -out ca.key 2048 ...
0
votes
0answers
135 views

SignTool return “File not found:” without name

I develop driver for my program and want to sing it. Previous developer made a bat file for it. But it can't work. Here is the content of this file: SignTool sign /v /ac "MSCV-GlobalSign.cer" /s ...
0
votes
1answer
566 views

SSL = Cannot create certificate for IIS (Cannot create PFX file from KEY+Certificate+RootCa)

I just got 4 files from RapidSSL which I would like to use for IIS Express. To do this I need to create a PFX file. I have CSR, KEY, CERTIFICATE, ROOT/CA. Here there are: CSR => I saved it as ...
0
votes
0answers
104 views

Convert PEM certificate to CER without using openssl

What are the ways of converting certificates WITHOUT openssl? PEM format to CER in particular. I need to write C# code that does it. Thanks.
0
votes
2answers
359 views

JKS, CER, SignCode issue

Currently, I've got an intresting problem about signing an EXE file using the SignCode tool from Microsoft and a certificate (from GlobalSign)... So, we've bought a new certificate as the current one ...
6
votes
1answer
95 views

Can CERs be used to guarantee that finalize is never called?

We have a very tricky interop problem wherein the thread used to initialize a 3rd-party system has to be the same thread used to terminate it. Failure to do this results in a deadlock. We are ...
6
votes
1answer
379 views

How can a SafeHandle be used in a P/Invoke signature that requires a null pointer in certain cases?

Hopefully this isn't too obscure for SO, but consider the following P/Invoke signature: [DllImport("odbc32.dll", CharSet = CharSet.Unicode)] internal static extern OdbcResult SQLAllocHandle( ...
3
votes
1answer
401 views

How to obtain a Microsoft Certificate (*.cer & .pfx)?

In order to upload a service on Microsoft Azure Cloud there is a cer file required, to proof the identity. How can I purchase one for my company? Thanks,
1
vote
0answers
45 views

Understanding the purpose of CERs in this example

I'm reading through Constrained Execution Regions and other errata [Brian Grunkemeyer] in an attempt to understand constrained execution regions, however I'm having some problems understanding the ...
17
votes
1answer
284 views

Do C# try-finally CERs break in iterators?

Apparently, Constrained Execution Region guarantees do not apply to iterators (probably because of how they are implemented and all), but is this a bug or by design? [See the example below.] i.e. ...
1
vote
1answer
2k views

How to generate a CRL (certificate revocation list) file

I'm using self-signed certificates for testing, how can I generate certificate revocation list to test cert verification? Has keytool in JDK provided such functionalities? Thanks!
1
vote
2answers
370 views

using constrained execute regions

I have a Visual Studio 2008 C# .NET 3.5 application that P/Invokes a native method that accepts a file handle as a parameter. Originally, I was just using ...
0
votes
2answers
4k views

IIS 6 Private Key certificate access

We have a Web asp.net application running in the framework 2.0 and hosted in an IIS 6 server, and the OS is windows server 2003. The web application is suing a client certificate to be authenticated ...
15
votes
5answers
2k views

Code demonstrating the importance of a Constrained Execution Region

Could anyone create a short sample that breaks, unless the [ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)] is applied? I just ran through this sample on MSDN and am unable to get ...