CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
ec_parameters.h
1
2#pragma once
3
4#include <security/cryptography/ec_point.h>
5#include <security/cryptography/ec_curve.h>
6
7namespace System { namespace Security { namespace Cryptography {
8
11{
14
17
20
22 ASPOSECPP_SHARED_API void Validate() const;
23};
24
25}}} // namespace System::Security::Cryptography
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
An elliptic curve.
Definition: ec_curve.h:13
Public and private key parameters of an elliptic curve.
Definition: ec_parameters.h:11
ECPoint Q
Public point.
Definition: ec_parameters.h:13
ByteArrayPtr D
Private Key.
Definition: ec_parameters.h:16
void Validate() const
Validate current parameters.
ECCurve Curve
The Curve.
Definition: ec_parameters.h:19
Point on an elliptic curve.
Definition: ec_point.h:10