sign and verify using .pfx files (General questions)
hi guys its me again...
VB6 code :
Dim oCert as new Certificate
Dim oCrypt as wodCryptCom
Dim hashBlob as new MemBlob
Dim signBlob as new MemBlob
oCert.LoadKey useDrive & genexus.pfx ' self signed pfx
oCert.Load useDrive & genexus.pfx
lblOWNER.Caption = oCert.CommonName & < & oCert.Email & >
hashBlob.Text = QPxo1S95hM2nLzgcVKq5sg==
Set oCrypto = New wodCryptCom
oCrypto.Type = RSA
oCrypto.Padding = PadPKCS7
oCrypto.SecretKey = * how can I load private key from oCert ????
oCrypto.Sign hashBlob, signBlob
and...
when I would try to verify how can I load public key from oCert before oCrypto.Verify(hashBlob,signBlob) ???
thank you again.
Complete thread:
- sign and verify using .pfx files - mauricio, 2005-02-17, 14:05
- Re: sign and verify using .pfx files - wodSupport, 2005-02-17, 22:54
- Re: sign and verify using .pfx files - mauricio, 2005-02-18, 11:05
- Re: sign and verify using .pfx files - mauricio, 2005-02-18, 11:10
- Re: sign and verify using .pfx files - wodSupport, 2005-02-24, 21:33
- Re: sign and verify using .pfx files - mauricio, 2005-02-18, 11:10
- Re: sign and verify using .pfx files - mauricio, 2005-02-18, 11:05
- Re: sign and verify using .pfx files - wodSupport, 2005-02-17, 22:54