Use version number from openssv.h

This commit is contained in:
Felix Schulze 2012-04-20 18:49:36 +02:00
parent 10bf903c76
commit 41174856ed
1 changed files with 4 additions and 1 deletions

View File

@ -11,6 +11,7 @@
#import "ViewController.h" #import "ViewController.h"
#include <Openssl/md5.h> #include <Openssl/md5.h>
#include <Openssl/sha.h> #include <Openssl/sha.h>
#include <Openssl/opensslv.h>
@implementation ViewController @implementation ViewController
@ -70,7 +71,9 @@
- (IBAction)showInfo - (IBAction)showInfo
{ {
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"OpenSSL-for-iOS" message:@"OpenSSL-Version: 1.0.1\nLicense: See include/LICENSE\n\nCopyright 2010-2012 by Felix Schulze\n http://www.x2on.de" delegate:nil cancelButtonTitle:@"Close" otherButtonTitles:nil]; NSString *version = [NSString stringWithCString:OPENSSL_VERSION_TEXT encoding:NSUTF8StringEncoding];
NSString *message = [NSString stringWithFormat:@"OpenSSL-Version: %@\nLicense: See include/LICENSE\n\nCopyright 2010-2012 by Felix Schulze\n http://www.x2on.de", version];
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"OpenSSL-for-iOS" message:message delegate:nil cancelButtonTitle:@"Close" otherButtonTitles:nil];
[alert show]; [alert show];
} }