Cryptography API: Application programming interface that enables application developers to add authentication, encoding, and encryption to Windows-based applications. The API are oriented on the developer of unmanaged (native) applications in C/C++.

learn more… | top users | synonyms

1
vote
1answer
40 views

Get the X509 data from a PFX certificate using CryptoAPI

Good day. Stackoverflow has helped me many times before, but I am a bit stuck on this one and hope that someone can give me some pointers. Background: I need to pass X509 data of a certificate to ...
2
votes
2answers
92 views

HMAC-MD5 with CryptoApi

I have adopted the SHA1 HMAC example from Microsoft's website and modified it according to this stack-overflow post and some other suggestions on the Internet, however I am unable to produce correct ...
2
votes
1answer
123 views

Digital signature made in C# does not verify in C++

I have a C# application which digitally signs data using RSA. The code is as follows: RSACryptoServiceProvider rsa = new RSACryptoServiceProvider(); rsa.ImportCspBlob(privateKeyBlob); SHA1 sha1 = ...
0
votes
1answer
49 views

CryptoAPI AcquireContext fails to retrieve key container

I am porting an old vb6 application to .net and I am having an issue since yesterday afternoon with some CryptoAPI calls. In particular I can't retrieve a key container which is already defined. I use ...
0
votes
1answer
65 views

MD5-SHA1 hash using CryptoAPI

I have requirement of signing a data using MD5-SHA1 hash (MD5 hash and SHA1 hash of the data are combined and then signed). Primary requirement: MD5-SHA1 hash is provided by OpenSSL in some way that ...
1
vote
1answer
49 views

Import DER encoded public key using crypto API

Is it possible to import DER encoded public key using MS crypto API? So i can verfiy signatures ? I need a piece of code or help for MS Crypto API for importing DER encoded public-key/certificate.
0
votes
1answer
114 views

Digital Signature SunMSCAPI provider & MS Crypto API

I want to sign file with the SunMSCAPI provider. As public key and signatures needs to be imported using MS Crypto API. Generally generating signatures with SHA1withRSA, ends up with big-endian to ...
0
votes
1answer
20 views

Creating a .cer [DER encoding] in code

I have a working solution that creates valid .pfx files (based on CryptoAPI being wrapped in C#). I can import this into my private tore, then export it to a .cer HOWEVER (isnt there always a ...
2
votes
0answers
40 views

Getting same ciphertext every time from the same plaintext

I am using Microsoft CryptoAPI to encrypt the password. Using 3DES from Microsoft Enhanced Cryptographic Provider. What I noticed is that I seem to be getting exactly the same ciphertext from the same ...
0
votes
0answers
68 views

Efficient RC6 and Mars encryption algorithm implementions

I am running linux kernel 2.6.32 which does not provide rc6 and mars encryption algorithms in its crypto API and I need to embed these algorithms as kernel modules and register them in linux's crypto ...
1
vote
0answers
77 views

Need help to find certificate by Subject name (X500 format, CERT_X500_NAME_STR) using CertFindCertificateInStore()?

A client application has to access certificate from Windows certificate store. The search input is the subject name in X500 string format as below. "C=CH, S=Aargau, L=Baden, O=Test, OU=FF, CN= Test ...
4
votes
1answer
43 views

Difference between Exchange key and Signing key in Crypto API

In the .NET crypto API, I noticed that the CspParameters object has a KeyNumber property that can be used to specify if the key should be a signing key or an exchange key. Is there any real ...
1
vote
1answer
70 views

Identifying CSP provider in CryptoAPI

I am using MS CAPI APIs for using a USB token for digital signing. using CryptAcquireContext, I can print out the names of all the CSPs available, but how do I know which CSP is associated with a ...
0
votes
0answers
35 views

c++ and c# code with cryptoapi

I have a c++ code for encrypting and decrypting text, using the crypto api. When I run the encrypting code from a MFC project and then run the decrypting code from a CLI application(which calls the ...
1
vote
0answers
166 views

SQL Server 2008 - Transparent Data Encryption - APIs to read backup logs

This is about the Transparent data encryption(TDE) on MSSQL. I have a database which is TDE enabled. So this means i have the Database Encryption Key(DEK), the certificate used to secure it and the ...
1
vote
0answers
52 views

What tools can I use to troubleshoot Crypto API calls on an app?

Windows XP | CryptoAPI I'm trying to troubleshoot why a CryptUnprotectData cryptoAPI call is failing on a Windows app. Is there any way I can monitor the call (and error response from Windows)? I ...
0
votes
1answer
46 views

CryptDecryptMessage failing

I have been trying to write some code to use the Microsoft CryptoAPI. The goal is very simple: encrypt and then decrypt a string. I seem to have it almost working, but the very last call to ...
0
votes
1answer
393 views

VBA Use of Microsoft CryptoAPI (AES) Encryption/Decryption Failing In Some Instances [closed]

I work in a corporate environment and have a need to encrypt some config used by an Excel "application" using AES. I have tried to use something like the code below to call the Windows CryptoAPI. ...
1
vote
0answers
153 views

Error importing public key using cryptoapi CryptImportKey

I want to import public key blob to a CSP. but error occurred. BYTE pbData[] ...
2
votes
1answer
232 views

How to export certificate from Windows certificate store via CryptoAPI as Base64 string

i've got following C# code for doing what i asked for in subject: public static void ExportCertificatesToFile(string FileName) { stringBuilder builder = new StringBuilder(); X509Store ...
0
votes
1answer
262 views

Windows Crypto Api bad length

I found a simple unit for generating a RSA KeyPair and encrypting / decrypting. It works fine on small strings but on larger text I get error : Bad Length. What could be the cause , here is the unit, ...
0
votes
2answers
94 views

Login with CryptoAPI on a USB Token

Is there a way to login on a usb toke (iKey 4000) using CryptoAPI ? (Juts ot be clear, it's not about login with the token but on it) I know I can do that using Pkcs11. I need that in order to avoid ...
0
votes
0answers
63 views

Encyrption by MS Crypto API in Japanese computers have problems

We have an application that is protected by using MS Crypto API. We read the Hard Drive Volume ID, Motherboard ID and CPU ID and encrypt (in UTF8) all these with our Key to create an activation Key. ...
2
votes
2answers
145 views

Is it possible for one process to inject code into another without administrative privileges?

The CryptProtectMemory API in the DPAPI allows you to pass the CRYPTPROTECTMEMORY_SAME_PROCESS flag, which prevents other processes from decrypting the memory. One way around this would be to use ...
0
votes
1answer
134 views

how to pass the string to this MD5 program.?

am trying to implement an application that uses an MD5 hash underneath, i have acquired the MD5 hash program from the internet, but i don't know how to pass the string from my program ( my program ...
6
votes
2answers
293 views

OpenSSL RSA_public_decrypt in MS Crypto API

I'm trying to develop a license verification solution. Licences are encoded on server using RSA_private_encrypt openssl function. For Mac OX X I use openssl RSA_public_decrypt and it works like a ...
0
votes
1answer
153 views

Problems to import RSA key in other computer

I am creating a little tool for encrypt and decrypt using a pair keys (public and private keys). I export public and private key on my computer and I can encrypt and decrypt files without problems. I ...
1
vote
0answers
96 views

Load a smart card minidriver without injecting a card

I am currently evaluating if it is possible to use a smart card minidriver for my project. My Project is to use a smartphone as a card reader and use it for a smart card login. What I'd like to know ...
0
votes
1answer
141 views

Why does CryptAcquireContext return ERROR_ACCESS_DENIED when called from a process started via WMI?

I have an executable which calls CryptAcquireContext with CRYPT_NEWKEYSET: BOOL b_result; HCRYPTPROV prov; b_result = CryptAcquireContext(&prov, L"testcontext6", MS_DEF_PROV, PROV_RSA_FULL, ...
-1
votes
2answers
580 views

java - get key from byte array

I have a java program that encrypts file content with a random-generated key. That key is encrpyted with RSA and saved into a text file. Now, I have a java program that given the file and the ...
0
votes
0answers
72 views

How to verify SSL EV certificate?

Someone can give me cpde examples or explanation on how to verify SSL Extended Validation certificate via the Windows Crypto API's ? I found one example. From what i understand here you must use ...
1
vote
0answers
87 views

How to set private key pin using CERT_CONTEXT

I need to set Private Key Pin without CSP window. I've got an CERT_CONTEXT structure and i call CryptAcquireCertificatePrivateKey with silent flag. Function fails with NTE_SILENT_CONTEXT error ...
0
votes
1answer
91 views

Issue validating ASHWID (HardwareToken) in the cloud

I'm trying to validate HardwareToken issued by HardwareIdentification.GetPackageSpecificToken with an azure (.net 4.5) service. I followed the official guidance. But i'm stuck in the very last ...
2
votes
3answers
482 views

cryptoapi and openssl

I'm trying to encrypt and sign a file with cryptoapi with some X.509 certificates. I want to verify and decrypt this file with openssl. On windows I think I need to use the CryptSignAndEncryptMessage ...
0
votes
0answers
136 views

How to load encoded (password protected) PEM/DER private key with CryptoAPI?

Here are some examples how to load DER or PEM certificate or private key into Windows CryptoAPI (with help of CryptDecodeObject and other functions: CryptoAPI / WinCrypt : How to import private key in ...
2
votes
1answer
219 views

CryptExportKey: how to export private key from PKCS#12 store?

I need to export public and private RSA key from certificate, stored in PKCS#12 format, on Windows. I can open certificate store with CertOpenStore(), then find certificate with ...
1
vote
1answer
286 views

how to use Microsoft Crypto API with USB Dongle following PKCS#11

I have safenet authentication usb token which was given by a company and they told me they have digital public key certificate inside. They gave me a password and a software by which i can see that it ...
1
vote
1answer
121 views

Adding a CA certificate for client certificates

I'm writing a server application that uses CryptoAPI and Schannel for setting up a secure SSL connection to clients. The server requires the clients to submit a certificate for verification (by ...
1
vote
1answer
164 views

ASN1 formatted public key for CryptVerifyMessageSignatureWithKey?

I´m trying to build a Sign/Decode pair of functions using Cripto API in C++. The signing process seems to be ok, but I am having a problem getting the decode part to work. Since I am not relying on ...
0
votes
0answers
44 views

CryptAcquireContextA hang

I used ollydbg and checked the ESP register of the frozen thread and saw that the thread is frozen in the call NtWaitForSingleObject(x, 0, 0); I then followed the stack to check who was the main ...
4
votes
1answer
232 views

How to programmatically update subversion password on local machine?

I am building a small internal tool for use with the developers in my company. One of the small goals is to update multiple locations when we change our passwords. One of these locations that needs to ...
0
votes
1answer
226 views

How to encrypt data using a certificate?

How do i encrypt data using a "certificate" in the Microsoft Crypto API? i know how to encrypt data with the Microsoft Crypto API using AES encryption: keyBlob.hdr.bType := PLAINTEXTKEYBLOB; ...
1
vote
1answer
78 views

CryptoAPI: CERT_STORE_PROV_MEMORY and thread safety

I'm writing a client/server solution using CryptoAPI to provide SSL encryption over a TCP socket. In the client I have a global CERT_STORE_PROV_MEMORY certificate store that I share between all ...
0
votes
1answer
184 views

Certificate context from system store always has an invalid pbCertEncoded pointer

I'm trying to use CertEnumCertificatesInStore() in the CryptoAPI to iterate through all the root certificates and encode them into PEM files for use with OpenSSL. I've found a few examples of this so ...
0
votes
2answers
177 views

OpenSSL decrypted text length

I am using this simple function for decrypting a AES Encrypted string unsigned char *aes_decrypt(EVP_CIPHER_CTX *e, unsigned char *ciphertext, int *len) { int p_len = *len, f_len = 0; unsigned ...
1
vote
2answers
280 views

windows CSP api

I am trying to write my own CSP. I am trying to do this by implementing a dll file, but I am not sure if I am on right way. I found something like this: Cryptographic Service Provider Developer's ...
2
votes
1answer
294 views

How do I export a HCRYPTKEY or PRIVATEKEYBLOB to a PFX file

I have a previously generated RSA private signing key, which is stored as a PRIVATEKEYBLOB. I am trying to move this into a new certificate for better management of the key. How do I take this blob ...
0
votes
1answer
208 views

CryptoAPI: accessing PKCS12 stored certificate

I'm exploring a case where the stored certificate must be extracted for using with OpenSSL's (C++ application). It is imported to Local Computer\Personal store, and had contained a password-protected ...
1
vote
1answer
743 views

Extracting modulus and exponent from public key using Openssl and C++

So I'm currently studying how networking works. I've got a bunch of packets from wireshark which I have already copied in buffers(only the content, without header. Wireshark->Follow TPC Stream->C ...
2
votes
2answers
137 views

How to set the ASN1 NumericString type to SubjectDN OID?

I have a working program, which generates a CSR, from specified SubjectDN string (example: 2.5.4.3=Name Surname, 1.2.300.38.22=12345678), using MS Crypto API. I use the function: CertStrToName(), to ...

1 2 3 4 5