Hallo,
Ich habe ein Programm ecdsa-Chifrierverfahren!
Der vom Code her compiliert und functioniert
nur die folgende Methode:
EVP_PKEY* pkey = PEM_read_bio_PUBKEY(mem,0,0,0); lierfert kein Wert zurück
deswegen bleibt pkey undefiniert und somit kommt es zum problem :
Unhandled Exception: System.AccessViolationException: Attempted to read or write protected memory. T.....
mein code sieht wie folgt aus:
#include "stdafx.h"
#include "string.h"
#include "openssl/evp.h"
#include "openssl/pem.h"
#include "openssl/sha.h"
#include "openssl/err.h"
int _tmain(int argc, _TCHAR* argv[])
{
CRYPTO_malloc_init();
OpenSSL_add_all_algorithms();
unsigned char sha1sum[SHA_DIGEST_LENGTH];
char* sig = "........................";
char* data = "blabla bla";
char* key = "keyyyyyyyyyyyyyyyyyyyy";
// make hash of data
SHA1((const unsigned char*)data, strlen(data), sha1sum);
// load key
BIO* b64 = BIO_new(BIO_f_base64());
BIO* mem = BIO_new(BIO_s_mem());
BIO_puts(mem,key);
mem = BIO_push(b64,mem);
[COLOR="red"]EVP_PKEY* pkey=PEM_read_bio_PUBKEY(mem,0,0,0);[/COLOR]
if( pkey == 0){
//ERR_print_errors_fp(stdout);
printf("Fehler");
}
EC_KEY* eckey = EVP_PKEY_get1_EC_KEY(pkey);
// verify signature
int ret = ECDSA_verify(0, sha1sum,SHA_DIGEST_LENGTH, (unsigned char*) sig, strlen(sig), eckey);
if (ret == -1)
{
/* error */
}
else if (ret == 0)
{
/* incorrect signature */
}
else /* ret == 1 */
{
/* signature ok */
}
return 0;
}
gibt es eine andere Methode in Opensource das funktionieren würde?
Danke