MYSymmetricKey.h
author snej@snej.local
Tue Apr 14 18:34:52 2009 -0700 (2009-04-14)
changeset 11 3568d5fd4b6a
parent 1 60e4cbbb5128
child 12 e4c971be4079
permissions -rw-r--r--
* The build process runs Doxygen only if it's installed (i.e. on the shell search path).
* Added instructions to the README on setting up a named Source Tree for MYUtilities.
* Changed the RSA key size in MYCryptoTest to 2048 and made it a named constant.
     1 //
     2 //  MYSymmetricKey.h
     3 //  MYCrypto
     4 //
     5 //  Created by Jens Alfke on 4/2/09.
     6 //  Copyright 2009 Jens Alfke. All rights reserved.
     7 //
     8 
     9 #import "MYKey.h"
    10 #import <CommonCrypto/CommonCryptor.h>
    11 
    12 
    13 @interface MYSymmetricKey : MYKey <MYEncryption, MYDecryption>
    14 
    15 /** Initializes a symmetric key from the given key data and algorithm. */
    16 - (id) initWithKeyData: (NSData*)keyData
    17              algorithm: (CCAlgorithm)algorithm;
    18 
    19 /** Randomly generates a new symmetric key, using the given algorithm and key-size in bits.
    20     The key is not added to any keychain; if you want to keep the key persistently, use
    21     the method of the same name in the MYKeychain class. */
    22 + (MYSymmetricKey*) generateSymmetricKeyOfSize: (unsigned)keySizeInBits
    23                                      algorithm: (CCAlgorithm)algorithm;
    24 
    25 /** The key's algorithm. */
    26 @property (readonly) CCAlgorithm algorithm;
    27 
    28 /** The key's size/length, in bits. */
    29 @property (readonly) unsigned keySizeInBits;
    30 
    31 @end