MYSymmetricKey.h
changeset 0 0a6527af039b
child 1 60e4cbbb5128
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/MYSymmetricKey.h	Sat Apr 04 20:42:03 2009 -0700
     1.3 @@ -0,0 +1,20 @@
     1.4 +//
     1.5 +//  MYSymmetricKey.h
     1.6 +//  MYCrypto
     1.7 +//
     1.8 +//  Created by Jens Alfke on 4/2/09.
     1.9 +//  Copyright 2009 Jens Alfke. All rights reserved.
    1.10 +//
    1.11 +
    1.12 +#import "MYKey.h"
    1.13 +#import <CommonCrypto/CommonCryptor.h>
    1.14 +
    1.15 +
    1.16 +@interface MYSymmetricKey : MYKey <MYEncryption, MYDecryption>
    1.17 +
    1.18 ++ (MYSymmetricKey*) generateSymmetricKeyOfSize: (unsigned)keySizeInBits
    1.19 +                                     algorithm: (CCAlgorithm)algorithm;
    1.20 +
    1.21 +@property (readonly) CCAlgorithm algorithm;
    1.22 +
    1.23 +@end