CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
hmac.h
1
2#pragma once
3
4#include <security/cryptography/hash_algorithm.h>
5
6namespace System { namespace Security { namespace Cryptography {
7
12class ASPOSECPP_SHARED_CLASS HMAC : public HashAlgorithm
13{
14public:
17 static ASPOSECPP_SHARED_API SharedPtr<HMAC> Create();
18};
19
20}}} // System::Security::Cryptography
All implementations of Hash-based Message Authentication Code (HMAC) must inherit this abstract class...
Definition: hmac.h:13
static SharedPtr< HMAC > Create()
NOT IMPLEMENTED.
Base class for hashing algorithms. Objects of this class should only be allocated using System::MakeO...
Definition: hash_algorithm.h:30
Pointer class to wrap types being allocated on heap. Use it to manage memory for classes inheriting O...
Definition: smart_ptr.h:180
Definition: db_command.h:9