CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
derive_bytes.h
1
2#pragma once
3
4#include <system/object.h>
5#include <system/array.h>
6
7namespace System { namespace Security { namespace Cryptography {
8
13class ASPOSECPP_SHARED_CLASS ABSTRACT DeriveBytes : public System::Object
14{
16 RTTI_INFO(System::Security::Cryptography::DeriveBytes, ::System::BaseTypesInfo<System::Object>)
17public:
20 virtual ArrayPtr<uint8_t> GetBytes(int32_t cb) = 0;
21 // Resets the state of the operation.
22 virtual void Reset() = 0;
23};
24
25}}}
Base class that enables using methods available for System.Object class in C#. All non-trivial classe...
Definition: object.h:62
Abstract class from which all classes that derive byte sequences of a specified length inherit....
Definition: derive_bytes.h:14
virtual ArrayPtr< uint8_t > GetBytes(int32_t cb)=0
RTTI information.
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