CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
dsa_parameters.h
1
2#pragma once
3
4#include <system/object.h>
5#include <system/array.h>
6
7namespace System { namespace Security { namespace Cryptography {
8
12struct ASPOSECPP_SHARED_CLASS DSAParameters : public System::Object
13{
14private:
16 typedef DSAParameters ThisType;
20 ASPOSECPP_SHARED_RTTI_INFO_DECL();
21
22public:
38 int32_t Counter = 0;
39
41 ASPOSECPP_SHARED_API DSAParameters();
42};
43
44}}} // namespace System::Security::Cryptography
Base class that enables using methods available for System.Object class in C#. All non-trivial classe...
Definition: object.h:62
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
Data structure of DSA algorithm parameters. This type should be allocated on stack and passed to func...
Definition: dsa_parameters.h:13
ByteArrayPtr Q
Q parameter of the DSA algorithm.
Definition: dsa_parameters.h:26
ByteArrayPtr J
J parameter of the DSA algorithm.
Definition: dsa_parameters.h:32
ByteArrayPtr Seed
Seed of the DSA algorithm.
Definition: dsa_parameters.h:36
ByteArrayPtr P
P parameter of the DSA algorithm.
Definition: dsa_parameters.h:24
ByteArrayPtr X
X parameter of the DSA algorithm.
Definition: dsa_parameters.h:34
ByteArrayPtr G
G parameter of the DSA algorithm.
Definition: dsa_parameters.h:28
ByteArrayPtr Y
Y parameter of the DSA algorithm.
Definition: dsa_parameters.h:30