aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/poco/Crypto/src/ECDSADigestEngine.cpp
blob: e5bcf2e0882661803801c23df15f702abd3f1b28 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
// 
// ECDSADigestEngine.cpp 
// 
// 
// Library: Crypto 
// Package: ECDSA 
// Module:  ECDSADigestEngine 
// 
// Copyright (c) 2008, Applied Informatics Software Engineering GmbH. 
// and Contributors. 
// 
// SPDX-License-Identifier:	BSL-1.0 
// 
 
 
#include "Poco/Crypto/ECDSADigestEngine.h" 
#include <openssl/ecdsa.h> 
 
 
namespace Poco { 
namespace Crypto { 
 
 
ECDSADigestEngine::ECDSADigestEngine(const ECKey& key, const std::string &name): 
	_key(key), 
	_engine(name) 
{ 
} 
 
 
ECDSADigestEngine::~ECDSADigestEngine() 
{ 
} 
 
 
std::size_t ECDSADigestEngine::digestLength() const 
{ 
	return _engine.digestLength(); 
} 
 
 
void ECDSADigestEngine::reset() 
{ 
	_engine.reset(); 
	_digest.clear(); 
	_signature.clear(); 
} 
 
	 
const DigestEngine::Digest& ECDSADigestEngine::digest() 
{ 
	if (_digest.empty()) 
	{ 
		_digest = _engine.digest(); 
	} 
	return _digest; 
} 
 
 
const DigestEngine::Digest& ECDSADigestEngine::signature() 
{ 
	if (_signature.empty()) 
	{ 
		digest(); 
		_signature.resize(_key.size()); 
		unsigned sigLen = static_cast<unsigned>(_signature.size()); 
		if (!ECDSA_sign(0, &_digest[0], static_cast<unsigned>(_digest.size()), 
			&_signature[0], &sigLen, _key.impl()->getECKey())) 
		{ 
			throw OpenSSLException(); 
		} 
		if (sigLen < _signature.size()) _signature.resize(sigLen); 
	} 
	return _signature; 
} 
 
 
bool ECDSADigestEngine::verify(const DigestEngine::Digest& sig) 
{ 
	digest(); 
	EC_KEY* pKey = _key.impl()->getECKey(); 
	if (pKey) 
	{ 
		int ret = ECDSA_verify(0, &_digest[0], static_cast<unsigned>(_digest.size()), 
			&sig[0], static_cast<unsigned>(sig.size()), 
			pKey); 
		if (1 == ret) return true; 
		else if (0 == ret) return false; 
	} 
	throw OpenSSLException(); 
} 
 
 
void ECDSADigestEngine::updateImpl(const void* data, std::size_t length) 
{ 
	_engine.update(data, length); 
} 
 
 
} } // namespace Poco::Crypto