Initial checkin. Passes tests on Mac and in iPhone simulator.
2 // MYPublicKey-iPhone.m
5 // Created by Jens Alfke on 3/30/09.
6 // Copyright 2009 Jens Alfke. All rights reserved.
9 #import "MYPublicKey.h"
10 #import "MYCrypto_Private.h"
15 #import "MYErrorUtils.h"
18 @implementation MYPublicKey
28 - (SecExternalItemType) keyType {
29 return kSecAttrKeyClassPublic;
33 - (MYPublicKey*) asPublicKey {
39 - (MYSHA1Digest*) publicKeyDigest {
40 NSData *digestData = [self _attribute: kSecAttrApplicationLabel];
42 return (MYSHA1Digest*) [MYSHA1Digest digestFromDigestData: digestData];
44 Warn(@"MYKeyPair: public key didn't have digest attribute");
50 - (NSData*) encryptData: (NSData*)data {
51 return _crypt(self.keyRef,data,kCCEncrypt);
55 - (BOOL) verifySignature: (NSData*)signature ofData: (NSData*)data {
58 uint8_t digest[CC_SHA1_DIGEST_LENGTH];
59 CC_SHA1(data.bytes,data.length, digest);
60 OSStatus err = SecKeyRawVerify(self.keyRef, kSecPaddingPKCS1SHA1,
61 digest,sizeof(digest), //data.bytes, data.length,
62 signature.bytes, signature.length);
72 NSData* _crypt(SecKeyRef key, NSData *data, CCOperation op) {
74 size_t dataLength = data.length;
75 size_t outputLength = MAX(dataLength, SecKeyGetBlockSize(key));
76 void *outputBuf = malloc(outputLength);
77 if (!outputBuf) return nil;
80 err = SecKeyEncrypt(key, kSecPaddingNone,//PKCS1,
81 data.bytes, dataLength,
82 outputBuf, &outputLength);
84 err = SecKeyDecrypt(key, kSecPaddingNone,//PKCS1,
85 data.bytes, dataLength,
86 outputBuf, &outputLength);
89 Warn(@"%scrypting failed (%i)", (op==kCCEncrypt ?"En" :"De"), err);
90 // Note: One of the errors I've seen is -9809, which is errSSLCrypto (SecureTransport.h)
93 return [NSData dataWithBytesNoCopy: outputBuf length: outputLength freeWhenDone: YES];