From 1643016d659b75b3fb3aa114098da0a71ad042e2 Mon Sep 17 00:00:00 2001 From: Stefan Reitshamer Date: Mon, 23 Jan 2012 11:03:55 -0500 Subject: [PATCH] fixed mistyped method in CryptoKey --- io/CryptoKey.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/io/CryptoKey.h b/io/CryptoKey.h index bdf09f6..ea21d59 100644 --- a/io/CryptoKey.h +++ b/io/CryptoKey.h @@ -19,7 +19,7 @@ - (id)initWithPassword:(NSString *)thePassword salt:(NSData *)theSalt error:(NSError **)error; - (id)initLegacyWithPassword:(NSString *)thePassword error:(NSError **)error; -- (EVP_CIPHER *)cipher; +- (const EVP_CIPHER *)cipher; - (unsigned char *)evpKey; - (unsigned char *)iv; @end