I need mac (carbon) equivalent for CryptProtectData and CryptUnProtectData.
Please refrain from suggesting a cocoa solution with "move to cocoa" since that's not an option.
I'm not a Mac expert but I think you want to use the Keychain API on Mac. You might just use Keychain for storing/generating the protection key, and use the native encryption api's for en/de-crypting the file.
I ended up using blowfish algorithm from Open SSL. This worked both on Windows and Mac.
Related
Got this Digital Keychain Photo viewer thingy. Comes with DPFMate which does not run under Windows 10. Does anyone know where DPFMate places the images on the keychain, so I could possibly write my own program to do the move?
i know this thread dates back to April but i have a device that uses DPFmate and it was packaged with it in memory. the software came with a windows and a mac version. fortunately most of the code is literally available in an uncompiled form in the mac app package. i have included everything from that package in a mediafire link. https://www.mediafire.com/file/ebyxepk013k18pd/Resources.rar
from what i gathered it loads a virtual drive from the machine using a SCSI connection driver of some sorts. i hope you can make sens of it more than me since i am not familiar with the programming language used.
On the Mac App Store, is the NEVPNManager allowed to be used to build a VPN client personalised for a provider and also set the VPN settings for the user ?
I think I know the answer on iOs, and it is yes, I have seen it in many apps, but what about Mac ? anybody with specific experience ?
Thanks
Yes, it's possible since El Capitan
I am trying to make a program that allows more flexibility in remapping keys. All of the keys are fine so far except for the power key. Is there a way to remap the location of the key itself or even just possibly disable it through terminal or applescript?
-Thanks
No, unfortunately not.
It was possible a few years ago with the tool Karabiner. However, starting with OS X 10.9 the feature was removed. See: Google: pqrs karabiner power-button
We're getting into iOS development with MonoTouch. All of our machines are Mac Pros with Windows 7 installed via BootCamp. I'm not crazy about rebooting into OS X just to access the MonoTouch IDE. I'm wondering if it's legal and possible to install OS X on a VM within Windows (if I'm already on Apple hardware, it should be ok, right?). Any other issues with Apple's SDK in a VM (I heard they do some hardware checking of some sort). Thanks in advance for any suggestions!
You can't really run OSX on a VM under windows without going the hacking route. The only way to properly virtualize OSX is to run OSX Server under OSX itself, which is not what you want.
The best option for you is to do what I do: run OSX on your Mac, then use something like VMWare or Parallels to run the Windows you have on your BootCamp as a VM. Works beautifully.
Yup, Eduardo is right, running OSX under non-apple hardware is considered illegal according to apple's license. Moreover, you may run into some issues when creating your developer's account or sumbitting apps.
However, if you still want go the hack way, you can refer to osx86project or just search google for "how to create a hackintosh".
I'm using Qt 4.x to develop a portable applicaion that will run on linux and windows. I want to add to the application an identifier such like a guid. how can I do that? what is the connection in the application I have to do the the id? and GUID - is it only for windows? (I want something that will be for both linux and windows)
10x!
I don't know if I understand your question(s) correctly, but I think QUuid (qt5 link here) is what you're looking for. It generates UUIDs (which GUIDs seem to be a special case of) for all supported platforms.