Tagged Questions
0
votes
1answer
36 views
iOS App for emergency response - how to secure the data without a password?
I have a unique use case here: I need to enhance a stand-alone iPhone app "EmergencyResponse" (name changed for this post) that is used by at-risk patients. Patients/Caregivers setup the app with ...
1
vote
3answers
102 views
AES file encryption with .Net Framework and decrypt it with IOS
We encrypt PDFs using AESManaged algorithm implemented in .NET framework. I used the example explained in here to implement C# code to encrypt the file. Now I need to decrypt that file using an iPhone ...
0
votes
0answers
216 views
Command /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/yacc failed with exit code 1
**I m working where i have to encrypt and decrypt the sqlite Database,i am using SQLCipher for encryption of database where i fallowed the instructions that were provided for the integration of the ...
-4
votes
1answer
80 views
0
votes
1answer
75 views
How to compress and encrypt a file in objective-C iOS App?
I'm developing an iOS App and I need to let the user send some log files and other stuff via mail for debug purposes.
In more details, before attaching the NSData to the email, I would like to ...
0
votes
0answers
105 views
How can I protect data using iOS on-disk encryption when the user passcode lock has not been enabled?
Question
How can I ensure data is encrypted when using NSData.writeToFile:options:error: with the NSDataWritingFileProtectionComplete?
Background research: Enabling data encyption
According to ...
0
votes
1answer
66 views
RSA Encryption in iPhone using existing Public Key and MOD
I have RSA Encryption implemented in Android using BouncyCastle API. I have Public Key and MOD which I want to use for iPhone app. The only thing I am concern with using RSA encryption is the ...
0
votes
0answers
119 views
RSA in objective C for iPhone
I am trying to get asymmetric encryption working in a program... I started out using code from the Apple documentation site (Certificate, Key, and Trust Services Programming Guide, section on ...
1
vote
0answers
26 views
How to generate key private key from .pem file in ios? [duplicate]
How to generate private key from .pem file in iOS / how to read .pem file in iOS?
0
votes
1answer
64 views
use SSL in an ios app for login
So I am making an iPhone app for a startup that already has a rails site that uses SSL for their user logins, and I am trying to incorporate SSL into the iOS app.
I don't need any help (yet) with ...
6
votes
1answer
218 views
Android AES 128 encryption
I'm trying to implement AES128 encryption on an Android. I've got a solution working on an iPhone with Objective C but having trouble porting it to Android. I've searched stackoverflow for a ...
2
votes
0answers
63 views
What to prepare before submitting an app to AppStore with encryption?
I am going to submit an app with encryption to AppStore. The app CCCrypt and stores text files in the iPhone, using <CommonCrypto/CommonCryptor.h> by Apple.
I will mostly likely select "Yes" ...
1
vote
1answer
109 views
Security When Using REST API in an iPhone Application
I know that this question has been asked in various forms before. However, I'm not looking for the "use https" answer. I'm already using HTTPS and I'm not worried about the sensitivity of the payload ...
5
votes
3answers
231 views
iOS: is it safe to hard-code AES key in my code?
I have a project which require some data to be encrypted by AES. However, I hard code the AES key in my project like this:
NSString *passwd = @"someStringAsKey";
NSData *encryptedData = [Encrypter ...
5
votes
2answers
781 views
Enable iOS On-Disk Encryption
For my iOS 6+-only app, I would like to enable the On-Disk Encryption offered from iOS.
I read this guide and I saw the "Protecting the User's Data" video of the WWDC 2012 (Session 714). However, I ...
0
votes
0answers
76 views
where to store the encryption key in my iPhone app
I need to implement encryption in my iPhone app.
I will use FBEncrytor to do it. However I need to know where to store the encryption key.
Do I just #define it in a header and use it directly? or save ...
1
vote
1answer
199 views
Encryption that works equally for iPhone and Android
I am trying to write an encryption class that will allow iPhone to send encrypted text to Android and vice versa. While this is quite straightforward in Android (following code)
private static ...
0
votes
2answers
198 views
Decrypt aes-file in iOS encrypted using a tool from AESCrypt.com
I'm working on an app that among other things plays sound files. My problem is the sound files are encrypted with a command line tool that can be found on aescrypt.com just providing the file and a ...
2
votes
1answer
278 views
iPhone AES Rijndael 128 decryption
i have a problem:
I encrypt data, and encode it in base64..after, i send it to my page php and it decode and decrypt data. OK!
Now, if i encrypt and encode data in php and send it to my application, ...
-1
votes
2answers
117 views
Get encrypted NSString from another NSString and key [closed]
How can I generate an encrypted string with a string and a key? Something like...
NSString *key = @"password";
NSString *stringToBeEncrypted = @"This is important";
NSString *result = [Encryptor ...
0
votes
2answers
176 views
Exporting public key in pkcs#1 format on iOS?
How does one export an RSA public key that has been generated with SecKeyGeneratePair in pkcs#8 format?
I'm currently writing an iOS app that needs to be able to generate RSA private/public key ...
-2
votes
1answer
169 views
Encryption and Decryption using Security Framework [closed]
I am doing file encryption and Decryption using the following code,
- (NSData *) AESEncrypt:(NSString *)key withData:(NSData *)fileData {
// 'key' should be 32 bytes for AES256, will be ...
0
votes
2answers
254 views
AES Encryption and Decryption in C
I am creating an application where I save some privacy documents.
I want to save those files as Encrypted format.
I searched in google for AES Encryption/Decryption alto in C language. Am not able to ...
4
votes
0answers
269 views
RSA Decryption across Android - iPhone
I'm trying to implement a system where A generates an RSA key pair and sends the public key to B. B then generates an AES key and encrypts it using the public key, sending the result back to A. A ...
1
vote
1answer
60 views
NSString that contain lots of null termination? [duplicate]
Possible Duplicate:
In ios 3des encryption contain lots of null termination.when i convert NSData to NSString , it will endup to first null termination?
when i convert encrypted NSData to ...
1
vote
1answer
160 views
In ios 3des encryption contain lots of null termination.when i convert NSData to NSString , it will endup to first null termination?
i have used this function for 3des encryption.
ccStatus = CCCrypt(kCCEncrypt, // CCoperation op
kCCAlgorithm3DES, // CCAlgorithm alg
...
0
votes
0answers
102 views
Is there any open source library for implementing Blowfish ECB algorithm in iOS
I am trying to implement Blowfish ECB encryption in my iPad app but unable to find any libraries for that.
There is free C source code here but it does not have any documentation. There is also a paid ...
3
votes
4answers
1k views
Encryption using AES-128 in Android and IPhone (Different result)
I am trying to encrypt some text using the AES algorithm on both the Android and IPhone platforms. My problem is, even using the same encryption/decryption algorithm (AES-128) and same fixed variables ...
2
votes
1answer
212 views
Iphone Encryption on UIImage - kCCBufferTooSmall error on AES 256 encryption
I have seen this thread, and the encryption techniques mentioned there is working well. But not in all cases.
Requirement:
Simple, take one image, encrypt it, and store the encrypted data. Later, ...
2
votes
1answer
582 views
How I using an RSA public key generated and how I encrypted in iOS
Hello I am a novice developer. And just gave me a project to iOS, but I have to encrypt part ciert an information.
I have to use 1024-bit RSA. The only thing they give me is a public key:
...
2
votes
0answers
158 views
Light protection for SQLite database on the iPhone
There are a bunch of questions on how to protect a SQLite database on the iPhone here. Those questions are mostly about:
preventing data tampering;
protecting user's personal data using a passwords ...
0
votes
2answers
98 views
iPhone XML data to be encrypted
Our application gets all the data from PHP/Mysql server in XML format
but now client don't want data to be appeared as it is,
he fears, anyone who knows those .php file links can access all data on ...
0
votes
1answer
87 views
Shall I encrypt data files in an iPhone game?
I'm making a turned based game for iPhone. I've got a couple of questions.
1.
Shall I bother with encrypting the data that is sent between the players?
2.
I'm also storing data files that contain ...
0
votes
1answer
683 views
AES crypting/decrypting on ios 6 issue
i'm trying to crypt/decrypt files using some libraries i found on web ( they use CommonCrypto ) ( links bellow ), but all libs have the same issue in ios6 ( and not in ios 5 ) :
i crypt an image for ...
1
vote
1answer
230 views
SQLCipher error while adding libsqlite3.dylib
I am using SQLCipher to protect SQLite database with encryption. I followed this tutorial http://sqlcipher.net/ios-tutorial, everything went well until I add libsqlite3.dylib framework. It returns the ...
0
votes
4answers
53 views
How to prevent connection to the server without my client application?
A client asked me to do a back-end server for its iPhone application and want only users who bought the application to be able to call the server.
The problem is that he doesn't want to add a login ...
-1
votes
1answer
372 views
How does iOS encrypt and decrypt binaries? [closed]
I am an iOS developer and was wondering if anyone has insight as to how binary encryption works in iOS? I.e. does Apple sign the app using it's private key to distribute on the app store and then ...
1
vote
2answers
49 views
iPhone Development - Saving variables for purchases
Within my app I have variables that are stored in the NSUserDefaults, these variables are increased by in-app purchases. My question is whether when the app is updated will these variables will remain ...
4
votes
1answer
147 views
What determine the length of encrypted String in RSA?
I know about length of some small encrypted strings as: 160, 196 ..
What determines the size?
1
vote
2answers
255 views
Invalid Code Signing Entitlements - Data Protection key not supported
I have received an mail from Apple that my app has been rejected.
The reason is:
We have discovered one or more issues with your recent delivery for
"Secure Send". To process your delivery, the ...
0
votes
1answer
293 views
RSA Encryption of string with known modulus and exponent in Objective C
I need to implement RSA encryption of user credentials(password mainly) entered by user in iOS app with defined Modulus and Exponent.
Could you please provide me any example code.
Thanks in ...
0
votes
1answer
102 views
Encryption and signature creation
I need to undergo a process of creating a signature from the following process in Objective C:
ASCII encode an NSString
Hash the results with MD5
Perform bitwise operation on the resulting bytes ...
2
votes
2answers
760 views
3des encryption in iphone
i am fairly new to iOS development and objective c.
I am developing an application which will send encrypted data to a server.
The server uses 3des with cbc and no padding.
I have read most of the ...
1
vote
0answers
218 views
Encrypt in PHP (AES,CBC), null value after decryption on iPhone
I am encrypting a value in PHP and another programmer is decrypting it in an iPhone app. Neither of us could be called knowledgeable in encryption. Everything looks correct from the information I ...
0
votes
0answers
113 views
What is standard way to handle encryption in ios app
I am working in ios app that mainly interacts with RESTful web services that send and receives JSON data. The JSON data is visible via network proxy tools. In case of applications like Groupon, all ...
1
vote
0answers
122 views
iPhone Submit application on AppStore having Encryption
I am using AES256 CommonCrypto framework of iOS to encypt data in my application, application is client server communication, all the data is encypt and decrypt both ends, my question is that do I ...
0
votes
1answer
560 views
How to Encrypt mp3 Files in iOS
I have an app that downloads MP3 files from our web server and momentarily stores them in an NSData object. This object is then written to a .mp3 file stored to the /Library/Cache folder in the app's ...
0
votes
1answer
245 views
IPhone xcode RSA decryption from file
Using the apple built in Security framework and common crypto libraries I do not want to randomly generate RSA keys but I want to hardcode the file containing my special private key into the following ...
0
votes
1answer
833 views
How to Create SeckeyRef from exponent and modulus of Public key and use in SecKeyEncrypt method
Anyone please help in Creating SecKeyRef from Exponent and Modulus being my Public exponent = 010001
and Public Modulus ...
1
vote
1answer
97 views
How to convert nsstring in to encryption format that also supported in php?
I want to convert an NSString into some encryption format and then decrypt it also, but the problem is that I am using php web service and I also care that the method I am using is supported in.
So I ...

