-
Re: Is there any framework or functions for ECDSA in iOS?
eskimo Dec 26, 2016 1:35 PM (in response to kosger)Is there any framework or functions for ECDSA in iOS?
Are you trying to implement ECDSA as part of TLS? Or ECDSA in some other context?
Share and Enjoy
—
Quinn “The Eskimo!”
Apple Developer Relations, Developer Technical Support, Core OS/Hardwarelet myEmail = "eskimo" + "1" + "@apple.com"
-
Re: Is there any framework or functions for ECDSA in iOS?
kosger Dec 28, 2016 6:30 AM (in response to eskimo)Thank you for respose.
> Are you trying to implement ECDSA as part of TLS?
No, I am not. I am trying to use ECDSA to sign and verify encrypted user messages, so it is not a part of TLS context-
Re: Is there any framework or functions for ECDSA in iOS?
eskimo Dec 28, 2016 3:09 PM (in response to kosger)I believe you can do this using the new ‘unified’ crypto API. Take a look at all the new-in-iOS 10 stuff in
<Security/SecKey.h>
. I’ve used this stuff for RSA and it worked really well (see the CryptoCompatibility sample code) but I haven’t yet had a chance to try out the ECDSA stuff.Share and Enjoy
—
Quinn “The Eskimo!”
Apple Developer Relations, Developer Technical Support, Core OS/Hardwarelet myEmail = "eskimo" + "1" + "@apple.com"
-
-