Discuss this help topic in SecureBlackbox Forum

TElCertificateRequest.LoadFromBufferPEM

TElCertificateRequest     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Loads the Certificate Request from the memory buffer in PEM format.

Declaration

[C#]
    void LoadFromBufferPEM(byte[] Buffer);

[VB.NET]
    Sub LoadFromBufferPEM(ByVal Buffer As Byte())

[Pascal]
    procedure LoadFromBufferPEM(const Buffer : ByteArray);

[C++]
    void LoadFromBufferPEM(void * Buffer, int32_t Size);

[PHP]
    void LoadFromBufferPEM(TSBPointer|array of byte|string|NULL $Buffer, integer $Size)

[Java]
    void loadFromBufferPEM(byte[] Buffer);

Parameters

  • Buffer - the buffer from which the certificate request is loaded.
  • Size - the size of the buffer, referenced in Buffer parameter

Return value

    0 on success.
    PEM error code otherwise.

Description

    This method attempts to read the certificate request from the provided memory location. The certificate request must have been saved in PEM format.

See also:     LoadFromBuffer     SaveToBufferPEM    

Discuss this help topic in SecureBlackbox Forum