0
votes
0answers
5 views
Can I store a PGP key ring in a csp parameters key container?
Hello, i have been using PGP. I need to safely store our PGP keyring for our application that will be processing some pgp files. Can I believe that the PGP is Asymmetric cryptography and i should be …
0
votes
2answers
36 views
ECC Encryption with BouncyCastle for C#
After reading this post regarding the use ECC to implement the hashing using aa private key I set about trying to find an implementation of ECDH and came across BoucyCastle.
Unfortunately …
0
votes
4answers
41 views
Crypto requirements and language/framework selection.
I want to build a web-based information management application for a client. The application will be used to store passwords and critical documents online.
I want to know:
(1) Which …
1
vote
2answers
65 views
packaging cryptography software and distributing
I'm developing a python GUI application and plan on calling external program packaged with my program to do some encryption. I noticed from sites like OpenSSL that talk about export laws regarding …
0
votes
1answer
151 views
Wincrypt: Unable to decrypt file which was encrypted in C#. NTE_BAD_DATA at CryptDecrypt
I am trying to decrypt a piece of a file with wincrypt and I cannot seem to make this function decrypt correctly. The bytes are encrypted with the RC2 implementation in C# and I am supplying the same …
0
votes
2answers
225 views
I have P & G— how do I use the Wincrypt API to generate a Diffie-Hellman keypair?
There's an MSDN article here, but I'm not getting very far:
p = 139;
g = 5;
CRYPT_DATA_BLOB pblob;
pblob.cbData = sizeof( ULONG );
pblob.pbData = ( LPBYTE ) &p;
CRYPT_DATA_BLOB gblob;
…
2
votes
2answers
273 views
I’m using Wincrypt for Diffie-Hellman— can I export the shared secret in plain text?
OK-- thanks to Mike, I was able to get Wincrypt to generate a Diffie-Hellman keypair. I figured out out to export the public key, and how to import the other party's public key. According to the …
0
votes
2answers
279 views
Hard coded AES-256 key with WinCrypt & CryptImportKey
I need to have a Win32 application load a hard coded AES-256 key, ideally using the WinCrypt.h methods. I've got my key in an unsigned char[32] but I can't find the correct format of a key blob to …
1
vote
2answers
624 views
How can I use a key blob generated from Win32 CryptoAPI in my .NET application?
I have an existing application that is written in C++ for Windows. This application uses the Win32 CryptoAPI to generate a TripleDES session key for encrypting/decrypting data. We're using the …
1
vote
1answer
225 views
Load an X509 PEM file into Windows CryptoApi
Hi coders,
I'm new to the whole Crypto thing, so I beg some basic pointers.
I need to load .PEM (X509) "-----BEGIN RSA XXX KEY----- -----END RSA XXX KEY-----" into a Windows Crypto Api context to …
0
votes
1answer
122 views
Basic questions on Microsoft CryptoAPI
I've been looking through the MSDN trying to understand the crytoapi. Below are some questions and guesses as to how things might work. Any answers or confirmations or refuting of my surmises much …
1
vote
1answer
46 views
cryptoapi for dummies
Can some one point me to some books or online resources to help learn about the windows cryptoapi package? I did find "Cryptography for Visual Basic" by Richard Bondi. I'd be more interested in …
2
votes
7answers
211 views
is cryptoapi good?
i'm writing a crypto program that does stuff like hashing (sha1), encryption, digital signatues for win32 in c++
is built in cryptoapi secure, or should i use some other library like crypto++
i need …
0
votes
2answers
864 views
How to encrypt small data block with only RSA public key using Microsoft ECSP?
I need to encrypt a small block of data (16 bytes) using 512 bit RSA public key -- quite an easy task for most cryptography libraries known to me, except for MS CSP API, as it seems.
Documentation for …
0
votes
2answers
286 views
Is there a way to create a private key using CryptoAPI and seed it?
We have a need to create a private key that is seeded from 2 plaintext keys. The 2 plaintext keys are maintained by different managers. This is to satisfy a dual-control key requirements that we have. …
