System::Security::Cryptography::FromBase64Transform class

FromBase64Transform class

Converts the CryptoStream class instance from 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 FromBase64Transform : public System::Security::Cryptography::ICryptoTransform

Methods

MethodDescription
Clear()Releases all resources.
Dispose()Releases operating system resources acquired by the current object.
FromBase64Transform()Constructor.
FromBase64Transform(FromBase64TransformMode)Constructor.
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)
TransformFinalBlock(System::ArrayPtr<uint8_t>, int32_t, int32_t)
virtual ~FromBase64Transform()Destructor.

See Also