blob: 34b2a3f355f73ea0dd6cf67ab610d81af66c6239 (
plain)
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
|
/*
* Utils for calling CommonCrypto
* (C) 2018 Jose Pereira
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_INTERNAL_COMMONCRYPTO_H_
#define BOTAN_INTERNAL_COMMONCRYPTO_H_
#include <botan/pk_ops_fwd.h>
#include <botan/secmem.h>
#include <botan/exceptn.h>
#include <memory>
#include <string>
namespace Botan {
class HashFunction;
class BOTAN_PUBLIC_API(2,0) CommonCrypto_Error final : public Exception
{
public:
CommonCrypto_Error(const std::string& what) :
Exception(what + " failed.") {}
};
/* Hash */
std::unique_ptr<HashFunction> make_commoncrypto_hash(const std::string& name);
}
#endif
|