VirtualBox

Changeset 74657 in vbox for trunk/include/iprt


Ignore:
Timestamp:
Oct 7, 2018 7:23:14 PM (6 years ago)
Author:
vboxsync
Message:

IPRT/asn1: Working on parsing Mach-O code signing structures... bugref:9232

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/iprt/asn1.h

    r74295 r74657  
    595595 * frequently used values. */
    596596#define RTASN1CORE_F_DECODED_CONTENT    RT_BIT_32(6)
     597/** Indefinite length, still pending. */
     598#define RTASN1CORE_F_INDEFINITE_LENGTH  RT_BIT_32(7)
    597599/** @} */
    598600
     
    16471649    /** The cursor depth. */
    16481650    uint8_t                     cDepth;
     1651    /** Number of pending indefinite length records. */
     1652    uint8_t                     cIndefinedRecs;
    16491653    /** Two bytes reserved for future tricks. */
    1650     uint8_t                     abReserved[2];
     1654    uint8_t                     abReserved[1];
    16511655    /** Pointer to the primary cursor. */
    16521656    struct RTASN1CURSORPRIMARY *pPrimary;
     
    16601664 * @{ */
    16611665/** Enforce DER rules. */
    1662 #define RTASN1CURSOR_FLAGS_DER      RT_BIT(1)
     1666#define RTASN1CURSOR_FLAGS_DER                  RT_BIT(1)
    16631667/** Enforce CER rules. */
    1664 #define RTASN1CURSOR_FLAGS_CER      RT_BIT(2)
     1668#define RTASN1CURSOR_FLAGS_CER                  RT_BIT(2)
     1669/** Pending indefinite length encoding. */
     1670#define RTASN1CURSOR_FLAGS_INDEFINITE_LENGTH    RT_BIT(3)
    16651671/** @} */
    16661672
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette