Changeset 74721 in vbox for trunk/include/iprt/crypto
- Timestamp:
- Oct 9, 2018 4:04:49 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 125645
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/crypto/applecodesign.h
r74692 r74721 47 47 48 48 49 /** @name Apple code signing magic values for identifying blobs49 /** @name RTCRAPLCS_MAGIC_XXX - Apple code signing magic values for identifying blobs 50 50 * @note No byte order conversion required. 51 51 * @{ */ … … 67 67 /** @} */ 68 68 69 /** @name Apple code signing slots.69 /** @name RTCRAPLCS_SLOT_XXX - Apple code signing slots. 70 70 * @note No byte order conversion required. 71 71 * @{ */ … … 87 87 /** @} */ 88 88 89 /** @name Apple code signing hash types89 /** @name RTCRAPLCS_HASHTYPE_XXX - Apple code signing hash types 90 90 * @note Byte sized field, so no byte order concerns. 91 91 * @{ */ … … 119 119 typedef struct RTCRAPLCSBLOBSLOT 120 120 { 121 /** Slot type, RTCRAPLCS SLOT_XXX.121 /** Slot type, RTCRAPLCS_SLOT_XXX. 122 122 * (Big endian, but so are the constants too). */ 123 123 uint32_t uType; … … 156 156 { 157 157 /** 0x00: Header (uMagic = RTCRAPLCS_MAGIC_CODEDIRECTORY). */ 158 RTCRAPLCSHDR Hdr;158 RTCRAPLCSHDR Hdr; 159 159 /** 0x08: The version number (RTCRAPLCS_VER_XXX). 160 160 * @note Big endian, host order constants. */ … … 186 186 uint32_t offScatter; 187 187 /** 0x30: Offset of team identifier (optional). Big endian. 188 * @since RTCRAPLCS_VER_SUPPORTS_ SCATTER*/188 * @since RTCRAPLCS_VER_SUPPORTS_TEAM */ 189 189 uint32_t offTeam; 190 190 } RTCRAPLCSCODEDIRECTORY;
Note:
See TracChangeset
for help on using the changeset viewer.