Discuss this help topic in SecureBlackbox Forum

UnformatAttributeValue

Declared in     See also     


Filter: C#  VB.NET  Pascal  C++  


Use this function to extract the real attribute value from the ASN.1 structure.

Declaration

[C#]
    static byte[] UnformatAttributeValue(byte[] Value, [out] ref int TagID);

[VB.NET]
    Public Shared Function UnformatAttributeValue(ByVal Value As Byte(), ByRef TagID As Integer) As Byte()

[Pascal]
    function UnformatAttributeValue(Value : ByteArray; out TagID : integer) : ByteArray;

[C++]
    void UnformatAttributeValue(const std::vector<uint8_t> & Value, int32_t & TagID, std::vector<uint8_t> & OutResult);

Parameters

  • TagID - ASN.1 tag identifier.
  • Value - attribute value.

Description

Declared in

.NET:
  • Namespace: SBASN1Tree.Unit
  • Assembly: SecureBlackbox
VCL:
  • Unit: SBASN1Tree
Java:
  • Package: SecureBlackbox.Base.jar
C++:
  • sbasn1tree.h

See also:     FormatAttributeValue    

Discuss this help topic in SecureBlackbox Forum