System::Security::Cryptography::ToBase64Transform class
Contents
[
Hide
]ToBase64Transform class
Converts the CryptoStream class instance to base 64. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument.
class ToBase64Transform : public System::Security::Cryptography::ICryptoTransform
Methods
Method | Description |
---|---|
Clear() | Releases all resources. |
Dispose() | Releases operating system resources acquired by the current object. |
virtual get_CanReuseTransform() | Gets a value indicating whether the current transform can be reused. |
get_CanTransformMultipleBlocks() | Gets a value indicating whether multiple blocks can be transformed. |
virtual get_InputBlockSize() | Input block size. |
virtual get_OutputBlockSize() | Output block size. |
TransformBlock(System::ArrayPtr<uint8_t>, int32_t, int32_t, System::ArrayPtr<uint8_t>, int32_t) | Processes block of data and copies data to output array. |
TransformFinalBlock(System::ArrayPtr<uint8_t>, int32_t, int32_t) | Processes last block of data and calculates output value. |
virtual ~ToBase64Transform() | Destructor. |
See Also
- Class ICryptoTransform
- Namespace System::Security::Cryptography
- Library Aspose.PDF for C++