Get sha1 message digest from plaintext+private key in delphi

I want to create a Sha1 message digest, and it should use my private key as input along with the plain text.

Everything I have found so far either dont use a private key or just take a lot of certificates as input.

Upvotes: 2

Views: 1016

Answers (2)

Johan
Johan

Reputation: 76617

I use DCPCrypt for my crypto needs.
http://www.cityinthesky.co.uk/opensource/dcpcrypt

It's opensource and works really well.
After installing the package, use TDCP_sha1 and drop that on a form. Then look up how to use the component in the help files in the DOC directory in the zip file.

Upvotes: 1

Charles Faiga
Charles Faiga

Reputation: 11763

Have a look at TurboPower LockBox

Upvotes: 0

Related Questions