| OLD | NEW |
| 1 Name: Darwin | 1 Name: Darwin |
| 2 URL: http://www.opensource.apple.com/ | 2 URL: http://www.opensource.apple.com/ |
| 3 Version: unknown | 3 Version: unknown |
| 4 Security Critical: yes | 4 Security Critical: yes |
| 5 License: Apple Public Source License 2.0 |
| 5 | 6 |
| 6 Four files are excerpted here: | 7 Four files are excerpted here: |
| 7 | 8 |
| 8 malloc.h from: | 9 malloc.h from: |
| 9 http://www.opensource.apple.com/source/Libc/Libc-763.11/include/malloc/malloc.h | 10 http://www.opensource.apple.com/source/Libc/Libc-763.11/include/malloc/malloc.h |
| 10 | 11 |
| 11 Modifications: | 12 Modifications: |
| 12 - Modified #ifdef guards. | 13 - Modified #ifdef guards. |
| 13 - Removed everything but the definition of malloc_zone_t. | 14 - Removed everything but the definition of malloc_zone_t. |
| 14 - Renamed _malloc_zone_t to ChromeMallocZone to avoid possible name conflicts. | 15 - Renamed _malloc_zone_t to ChromeMallocZone to avoid possible name conflicts. |
| (...skipping 26 matching lines...) Expand all Loading... |
| 41 guarantee for API stability. However, the use of this header is the only way | 42 guarantee for API stability. However, the use of this header is the only way |
| 42 to implement OCSP checking per Apple's public documentation on the usage of | 43 to implement OCSP checking per Apple's public documentation on the usage of |
| 43 their Trust Policy Module. Further, the use of this private header is the | 44 their Trust Policy Module. Further, the use of this private header is the |
| 44 recommended approach from Apple for modifying OCSP policies. | 45 recommended approach from Apple for modifying OCSP policies. |
| 45 | 46 |
| 46 See: http://developer.apple.com/documentation/Security/Reference/SecAppleTrustPo
licyModuleSpec/Apple_Trust_Policy_Module_Functional_Specification.pdf | 47 See: http://developer.apple.com/documentation/Security/Reference/SecAppleTrustPo
licyModuleSpec/Apple_Trust_Policy_Module_Functional_Specification.pdf |
| 47 and http://lists.apple.com/archives/apple-cdsa/2008/Aug/msg00008.html | 48 and http://lists.apple.com/archives/apple-cdsa/2008/Aug/msg00008.html |
| 48 | 49 |
| 49 Modifications: | 50 Modifications: |
| 50 - Removed unneeded definitions for internal Apple CSP DL enums and structs | 51 - Removed unneeded definitions for internal Apple CSP DL enums and structs |
| OLD | NEW |