Important alert: (current site time 7/15/2013 6:46:52 PM EDT)
 

winzip icon

Encryption/Decription using the windows CryptoAPI

Email
Submitted on: 2/1/2000
By: Barry Dunne 
Level: Beginner
User Rating: By 5 Users
Compatibility: C++ (general)
Views: 24030
(About the author)
 
     This class provides encryption/decryption through the CryptoAPI. This is the standard API you can use regardless of the underlying dll used to do the encryption. These dlls are called Cryptographic Service Providers (CSPs) and you get one as standard from Microsoft called "Microsoft Base Cryptographic Provider v1.0" This class uses the standard CSP, but this can be changed by changing the constant SERVICE_PROVIDER There is additional code in this class to ensure that the encrypted values do not contain CR or LF characters so that the result can be written to a file A word of warning: If you are going to use WritePrivateProfileString to write the encrypted value to an ini file, you must write a NULL first to delete the existing entry as it does not clear previous entries when writing binary data. This is a problem if you are overwriting a value with a smaller one.
 
winzip iconDownload code

Note: Due to the size or complexity of this submission, the author has submitted it as a .zip file to shorten your download time. Afterdownloading it, you will need a program like Winzip to decompress it.Virus note:All files are scanned once-a-day by Planet Source Code for viruses, but new viruses come out every day, so no prevention program can catch 100% of them. For your own safety, please:
  1. Re-scan downloaded files using your personal virus checker before using it.
  2. NEVER, EVER run compiled files (.exe's, .ocx's, .dll's etc.)--only run source code.

If you don't have a virus scanner, you can get one at many places on the net including:McAfee.com

 
Terms of Agreement:   
By using this code, you agree to the following terms...   
  1. You may use this code in your own programs (and may compile it into a program and distribute it in compiled format for languages that allow it) freely and with no charge.
  2. You MAY NOT redistribute this code (for example to a web site) without written permission from the original author. Failure to do so is a violation of copyright laws.   
  3. You may link to this code from another website, but ONLY if it is not wrapped in a frame. 
  4. You will abide by any additional copyright restrictions which the author may have placed in the code or code's description.

Report Bad Submission
Use this form to tell us if this entry should be deleted (i.e contains no code, is a virus, etc.).
This submission should be removed because:

Your Vote

What do you think of this code (in the Beginner category)?
(The code with your highest vote will win this month's coding contest!)
Excellent  Good  Average  Below Average  Poor (See voting log ...)
 

Other User Comments
10/5/2000 11:56:33 AMTomas Karlsson

I got a compiling error when trying this source: cryptography.cpp(371) : fatal error C1010: unexpected end of file while looking for precompiled header directive

Any ideas?

Regards,

Tomas

(If this comment was disrespectful, please report it.)

 
12/24/2000 4:35:57 AMPhilip Leitch

Try including your standard headder...
(If this comment was disrespectful, please report it.)

 
1/18/2002 3:56:49 AMKerry

Thanks for your great code.

It works well but when have it encrypt the string line "1111111111111111111111111111111111111111111111111". the result of decryption is short than the source string.

any advice?

(If this comment was disrespectful, please report it.)

 
10/15/2002 6:15:09 AM

Hi,

I just like to ask if it is ANSI X9.8 or Diebold? I actually need of one these. Thanks.

Regards,
Cathy
(If this comment was disrespectful, please report it.)

 
11/7/2004 12:58:40 PMBonj2

Excellent code, really simple yet sophisticated
Does it only work with ASCII characters for the password? I think there may be some issues with null-terminators being introduced if they are not, hence cutting the string short
(If this comment was disrespectful, please report it.)

 
4/4/2006 5:43:22 PMradar

nice code.... but it looks like it truncating the decryption.... any ideas?
(If this comment was disrespectful, please report it.)

 

Add Your Feedback
Your feedback will be posted below and an email sent to the author. Please remember that the author was kind enough to share this with you, so any criticisms must be stated politely, or they will be deleted. (For feedback not related to this particular code, please click here instead.)
 

To post feedback, first please login.