*/
CFIndex sslPubKeyGetAlgorithmID(SecKeyRef pubKey)
{
-#if TARGET_OS_IPHONE
- return SecKeyGetAlgorithmID(pubKey);
-#else
return SecKeyGetAlgorithmId(pubKey);
-#endif
}
/*
*/
CFIndex sslPrivKeyGetAlgorithmID(SecKeyRef privKey)
{
-#if TARGET_OS_IPHONE
- return SecKeyGetAlgorithmID(privKey);
-#else
return SecKeyGetAlgorithmId(privKey);
-#endif
}