MYCryptoTest.m
changeset 16 c409dbc4f068
parent 14 3af1d1c0ceb5
child 21 2c300b15b381
     1.1 --- a/MYCryptoTest.m	Sun Apr 19 21:19:35 2009 -0700
     1.2 +++ b/MYCryptoTest.m	Tue Jun 02 13:16:28 2009 -0700
     1.3 @@ -155,7 +155,7 @@
     1.4      #endif
     1.5  
     1.6      #if !TARGET_OS_IPHONE
     1.7 -#if 0 // TEMPORARILY OUT OF ORDER
     1.8 +#if 1 // TEMP-ORARILY OUT OF ORDER
     1.9          // Try exporting and importing a wrapped key:
    1.10          Log(@"Testing export/import...");
    1.11          NSData *exported = [key exportWrappedKeyWithPassphrasePrompt: @"Export symmetric key with passphrase:"];
    1.12 @@ -163,14 +163,13 @@
    1.13      #if 1
    1.14          CAssert(exported);
    1.15      #else
    1.16 -        //FIX: Exporting symmetric keys isn't working. Temporarily making this optional.
    1.17          if (!exported)
    1.18              Warn(@"Unable to export wrapped key");
    1.19          else
    1.20      #endif
    1.21          {
    1.22              CAssert(exported);
    1.23 -            MYSymmetricKey *key2 = [[MYSymmetricKey alloc] initWithKeyData: exported algorithm: algorithm];
    1.24 +            MYSymmetricKey *key2 = [[MYSymmetricKey alloc] initWithWrappedKeyData: exported];
    1.25              Log(@"Reconstituted as %@", key2);
    1.26              CAssertEqual(key2.keyData,key.keyData);
    1.27              decrypted = [key2 decryptData: encrypted];