Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Using SSL in an iPhone App - Export Compliance

I am going to upload an iPhone app to the app store which uses REST webservice. I am using ASIHTTPRequest for making connection to the server and get datas. The following are the things to note

  1. URL starts with "https"
  2. [request setValidatesSecureCertificate:NO] (When set to yes, I am only getting SSL error messages.)

Should I say my app supports encryption while submitting to the app store?

share|improve this question

marked as duplicate by owlstead, Peter O., t0mm13b, Kjuly, Vikdor Oct 15 '12 at 3:38

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

I'm not sure from the description whether you are setting up an SSL tunnel successfully or just transferring a certificate for site authentication.

In either case, you should probably call the Department of Commerce / Bureau of Industry and Security help desk at 202-482-0707 and get some guidance about what, if any, export restrictions would apply.

There is also a web site at http://www.bis.doc.gov/encryption

share|improve this answer

You only need to explicitly say your app "supports encryption" is your app uses some other form of encryption that what Apple provides in public API:s.

Using NSURLRequest with a https address is a public API, and no extra work needed on your part.

If you compile and bundle OpenSSL into your app yourself… well that is a completely different story and you are into allot of extra work.

share|improve this answer
You can find the actual (burdensome, unreasonable, ineffective and confusing) regulations on the Bureaucratic Industry Suppression (BIS) website: bis.doc.gov/encryption/question4.htm – Razick Sep 24 '12 at 12:34

Not the answer you're looking for? Browse other questions tagged or ask your own question.