CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
ripemd160.h
1
2#pragma once
3
4#include <security/cryptography/hash_algorithm.h>
5
6namespace System { namespace Security { namespace Cryptography {
7
13class ASPOSECPP_SHARED_CLASS RIPEMD160 : public HashAlgorithm
14{
16 typedef RIPEMD160 ThisType;
18 typedef HashAlgorithm BaseType;
20 ASPOSECPP_SHARED_RTTI_INFO_DECL();
21
22protected:
24 ASPOSECPP_SHARED_API RIPEMD160();
25 MEMBER_FUNCTION_MAKE_OBJECT(RIPEMD160, CODEPORTING_ARGS(), CODEPORTING_ARGS());
26
27public:
30 static ASPOSECPP_SHARED_API SharedPtr<RIPEMD160> Create();
34 static ASPOSECPP_SHARED_API SharedPtr<RIPEMD160> Create(const String& algName);
35};
36
37}}} // namespace System::Security::Cryptography
Base class for hashing algorithms. Objects of this class should only be allocated using System::MakeO...
Definition: hash_algorithm.h:30
Computes RIPEMD160 hash for input data. In C++ RIPEMD160 is not an abstract class....
Definition: ripemd160.h:14
static SharedPtr< RIPEMD160 > Create(const String &algName)
Creates hash algorithm instance.
static SharedPtr< RIPEMD160 > Create()
Creates hash algorithm instance.
Pointer class to wrap types being allocated on heap. Use it to manage memory for classes inheriting O...
Definition: smart_ptr.h:180
String class used across the library. Is a substitute for C# System.String when translating code....
Definition: string.h:122
Definition: db_command.h:9