Discuss this help topic in SecureBlackbox Forum

TElRSAKeyMaterial.EncodePublicKey

TElRSAKeyMaterial     See also     


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


This topic is under development…

Declaration

[C#]
    bool EncodePublicKey(byte[] PublicModulus, byte[] PublicExponent, byte[] AlgID, ref byte[] OutBuffer, ref int OutSize, bool InnerValuesOnly);

[VB.NET]
    Function EncodePublicKey(ByVal PublicModulus As Byte(), ByVal PublicExponent As Byte(), ByVal AlgID As Byte(), ByRef OutBuffer As Byte(), ByRef OutSize As Integer, ByVal InnerValuesOnly As Boolean) As Boolean

[Pascal]
    function EncodePublicKey(PublicModulus : pointer; PublicModulusSize : integer; PublicExponent : pointer; PublicExponentSize : integer; const AlgID : ByteArray; OutBuffer : pointer; var OutSize : integer; InnerValuesOnly : boolean = false) : boolean; overload;

[C++]
    bool EncodePublicKey(void * PublicModulus, int32_t PublicModulusSize, void * PublicExponent, int32_t PublicExponentSize, const std::vector<uint8_t> &AlgID, void * OutBuffer, int32_t &OutSize, bool InnerValuesOnly);

[PHP]
    bool EncodePublicKey(TSBPointer|array of byte|string|NULL $PublicModulus, integer $PublicModulusSize, TSBPointer|array of byte|string|NULL $PublicExponent, integer $PublicExponentSize, array of byte|string|NULL $AlgID, TSBPointer|array of byte|string|NULL $OutBuffer, integer &$OutSize, bool $InnerValuesOnly)

[Java]
    boolean encodePublicKey(byte[] PublicModulus, byte[] PublicExponent, byte[] AlgID, byte[] OutBuffer, TSBInteger OutSize, boolean InnerValuesOnly);

Parameters

  • PublicModulus -
  • PublicModulusSize -
  • PublicExponent -
  • PublicExponentSize -
  • AlgID -
  • OutBuffer -
  • OutSize -
  • InnerValuesOnly -

Return value

    …

Description

    …

See also:         

Discuss this help topic in SecureBlackbox Forum