X-Git-Url: https://git.saurik.com/apple/security.git/blobdiff_plain/866f8763175ff60e4fa455b92b5eb660a12fe6c7..84aacf34eae6543be9f0280b2015385f91e5c2c6:/OSX/libsecurity_ssl/lib/sslCrypto.c diff --git a/OSX/libsecurity_ssl/lib/sslCrypto.c b/OSX/libsecurity_ssl/lib/sslCrypto.c index 166a105b..60362e4a 100644 --- a/OSX/libsecurity_ssl/lib/sslCrypto.c +++ b/OSX/libsecurity_ssl/lib/sslCrypto.c @@ -53,11 +53,7 @@ */ CFIndex sslPubKeyGetAlgorithmID(SecKeyRef pubKey) { -#if TARGET_OS_IPHONE - return SecKeyGetAlgorithmID(pubKey); -#else return SecKeyGetAlgorithmId(pubKey); -#endif } /* @@ -65,11 +61,7 @@ CFIndex sslPubKeyGetAlgorithmID(SecKeyRef pubKey) */ CFIndex sslPrivKeyGetAlgorithmID(SecKeyRef privKey) { -#if TARGET_OS_IPHONE - return SecKeyGetAlgorithmID(privKey); -#else return SecKeyGetAlgorithmId(privKey); -#endif }