MYKeyPair.h
author snej@snej.local
Sat Apr 04 22:56:13 2009 -0700 (2009-04-04)
changeset 1 60e4cbbb5128
parent 0 0a6527af039b
child 2 8982b8fada63
permissions -rw-r--r--
Code cleanup, more header comments.
snej@0
     1
//
snej@0
     2
//  KeyPair.h
snej@0
     3
//  MYCrypto
snej@0
     4
//
snej@0
     5
//  Created by Jens Alfke on 3/21/09.
snej@0
     6
//  Copyright 2009 Jens Alfke. All rights reserved.
snej@0
     7
//
snej@0
     8
snej@0
     9
#import "MYPublicKey.h"
snej@0
    10
snej@0
    11
snej@0
    12
/** A key-pair consisting of a public and a private key.
snej@1
    13
    Can be used for signing and decrypting, as well as the inherited encrypting/verifying.
snej@1
    14
    Instances are generated by MYKeychain objects. */
snej@0
    15
@interface MYKeyPair : MYPublicKey <MYDecryption>
snej@0
    16
{
snej@1
    17
    @private
snej@0
    18
    SecKeyRef _privateKey;
snej@0
    19
}
snej@0
    20
snej@1
    21
/** Decrypts data that was encrypted using the public key.
snej@1
    22
    See the description of -[MYPublicKey encryptData:] for warnings and caveats.
snej@1
    23
    This method is usually used only to decrypt a symmetric session key, which then decrypts the
snej@1
    24
    rest of the data. */
snej@1
    25
- (NSData*) decryptData: (NSData*)data;
snej@1
    26
snej@1
    27
/** Generates a signature of data, using the private key.
snej@1
    28
    (What's actually signed using RSA is the SHA-256 digest of the data.)
snej@1
    29
    The resulting signature can be verified using the matching MYPublicKey's
snej@1
    30
    verifySignature:ofData: method. */
snej@1
    31
- (NSData*) signData: (NSData*)data;
snej@1
    32
snej@1
    33
#if !TARGET_OS_IPHONE
snej@1
    34
/** Exports the private key as a data blob, so that it can be stored as a backup, or transferred
snej@1
    35
    to another computer. Since the key is sensitive, it must be exported in encrypted form
snej@1
    36
    using a user-chosen passphrase. This method will display a standard alert panel, run by
snej@1
    37
    the Security agent, that prompts the user to enter a new passphrase for encrypting the key.
snej@1
    38
    The same passphrase must be re-entered when importing the key from the data blob.
snej@1
    39
    (This is a convenient shorthand for the full exportPrivateKeyInFormat... method.
snej@1
    40
    It uses OpenSSL format, wrapped with PEM, and a default title and prompt for the alert.) */
snej@1
    41
- (NSData*) exportPrivateKey;
snej@1
    42
#endif
snej@1
    43
snej@1
    44
@end
snej@1
    45
snej@1
    46
snej@1
    47
snej@1
    48
@interface MYKeyPair (Expert)
snej@1
    49
snej@0
    50
/** Creates a MYKeyPair object from existing Keychain key references. */
snej@0
    51
- (id) initWithPublicKeyRef: (SecKeyRef)publicKey privateKeyRef: (SecKeyRef)privateKey;
snej@0
    52
snej@1
    53
/** The underlying Keychain key reference for the private key. */
snej@1
    54
@property (readonly) SecKeyRef privateKeyRef;
snej@1
    55
snej@0
    56
#if !TARGET_OS_IPHONE
snej@0
    57
/** Exports the private key as a data blob, so that it can be stored as a backup, or transferred
snej@0
    58
    to another computer. Since the key is sensitive, it must be exported in encrypted form
snej@0
    59
    using a user-chosen passphrase. This method will display a standard alert panel, run by
snej@0
    60
    the Security agent, that prompts the user to enter a new passphrase for encrypting the key.
snej@0
    61
    The same passphrase must be re-entered when importing the key from the data blob.
snej@0
    62
    @param format  The data format: kSecFormatOpenSSL, kSecFormatSSH, kSecFormatBSAFE or kSecFormatSSHv2.
snej@0
    63
    @param withPEM  YES if the data should be encoded in PEM format, which converts into short lines
snej@0
    64
        of printable ASCII characters, suitable for sending in email.
snej@0
    65
    @param alertTitle  An optional title for the alert panel. (Currently ignored by the OS?)
snej@0
    66
    @param prompt  An optional prompt message to display in the alert panel. */
snej@0
    67
- (NSData*) exportPrivateKeyInFormat: (SecExternalFormat)format
snej@0
    68
                             withPEM: (BOOL)withPEM
snej@0
    69
                          alertTitle: (NSString*)title
snej@0
    70
                         alertPrompt: (NSString*)prompt;
snej@0
    71
#endif
snej@0
    72
snej@0
    73
@end