This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| uint8_t get_EC_curve(const EC_key_t ec) | |
| { | |
| int nid; | |
| nid = EC_GROUP_get_curve_name(EC_KEY_get0_group(ec)); | |
| return get_ec_curve_type(nid); | |
| } | |
| static EC_KEY *SecKeyToOpenSSLKey(SecKeyRef secKey, int public) { | |
| CFErrorRef error; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| From MacOS Sequoia (15.5 - 24F74) | |
| dmaclach-mac2:~ dmaclach$ export OBJC_HELP=1 | |
| dmaclach-mac2:~ dmaclach$ get | |
| objc[31594]: Objective-C runtime debugging. Set variable=YES to enable. | |
| objc[31594]: OBJC_HELP: describe available environment variables | |
| objc[31594]: OBJC_PRINT_OPTIONS: list which options are set | |
| objc[31594]: OBJC_PRINT_IMAGES: log image and library names as they are loaded | |
| objc[31594]: OBJC_PRINT_LOAD_METHODS: log calls to class and category +load methods | |
| objc[31594]: OBJC_PRINT_INITIALIZE_METHODS: log calls to class +initialize methods | |
| objc[31594]: OBJC_PRINT_RESOLVED_METHODS: log methods created by +resolveClassMethod: and +resolveInstanceMethod: |
OlderNewer