data-protection

How to protect your software code? [duplicate]

我的梦境 提交于 2019-11-28 10:48:43
Possible Duplicates: How do you protect your software from illegal distribution? Best practice to prevent software copy Hypothetical situation: Lets say I have built a software product from the scratch and it does wonderful things. The only problem is that, once someone takes a look at the code, they will understand it very easily and they can easily build it up themselves. Now, the thing is that I built the code from the scratch 100% and uses a mixture of API calls. Nobody else is involved in the development of the code. If I want to sell this product, what is the guarantee that someone much

Data Protection / NSFileProtectionComplete - successfully supported through entitlements.plist?

邮差的信 提交于 2019-11-28 00:22:38
问题 I'm looking to encrypt user data in an app, and the NSFileProtection mechanism looks perfect for this. This SO Question / Answer thread pointed me at the WWDC 2011 Video Securing iOS Apps which gave the 'too good to be true' tip of setting Data Protection across the app via entitlements (see from 33 minutes in). So, I tried this for my iOS 5.x+ app, and ran into the problem where it complains about Invalid Entitlements. I've configured Data Protection for the specific app via the iOS

Implementing and Testing iOS data protection

梦想的初衷 提交于 2019-11-27 06:34:27
Just saw the Session 209 - Securing Application Data from de 2010 WWDC. The keynote explains a lot of things, including the way you can set data protection attributes to your files (NSFileProtectionComplete, NSFileProtectionNone) and how to decide which protection is best for your case. I just implemented it, but can't figure out how to test if the security is on, any ideas? In addition, I have a sql lite database that needs to be accessed in background from time to time, and this method of data protection seems to be not good enough.. any link or tutorial that guide me through the best db

Client/JS Framework for “Unsaved Data” Protection?

人盡茶涼 提交于 2019-11-27 03:32:28
We have a typical web application that is essentially a data entry application with lots of screens some of which have some degree of complexity. We need to provide that standard capability on making sure if the user forgets to click the "Save" button before navigating away or closing their browser they get a warning and can cancel (but only when there is unsaved or dirty data). I know the basics of what I've got to do-- in fact I'm sure I've done it all before over the years (tie in to onbeforeunload, track the "dirty" state of the page, etc...) but before I embark on coding this YET AGAIN,

Implementing and Testing iOS data protection

人走茶凉 提交于 2019-11-26 12:54:53
问题 Just saw the Session 209 - Securing Application Data from de 2010 WWDC. The keynote explains a lot of things, including the way you can set data protection attributes to your files (NSFileProtectionComplete, NSFileProtectionNone) and how to decide which protection is best for your case. I just implemented it, but can\'t figure out how to test if the security is on, any ideas? In addition, I have a sql lite database that needs to be accessed in background from time to time, and this method of

Client/JS Framework for “Unsaved Data” Protection?

≯℡__Kan透↙ 提交于 2019-11-26 10:31:55
问题 We have a typical web application that is essentially a data entry application with lots of screens some of which have some degree of complexity. We need to provide that standard capability on making sure if the user forgets to click the \"Save\" button before navigating away or closing their browser they get a warning and can cancel (but only when there is unsaved or dirty data). I know the basics of what I\'ve got to do-- in fact I\'m sure I\'ve done it all before over the years (tie in to