swift3 - How to protect secret key

后端 未结 2 974
粉色の甜心
粉色の甜心 2021-01-14 07:57

I am new of iOS swift 3 development. Now, I am working on a project which needs encryption, message authentication code(MAC) and Hashed-base-MAC. These algorithms require se

2条回答
  •  时光取名叫无心
    2021-01-14 08:17

    Check iCloud Keychain (based on your tags [ios], [swift], [key]).

    It functions as a secure database that allows information including a user's website login passwords, Wi-Fi network passwords, credit/debit card management (though without CVV), and other account data, to be securely stored for quick access and auto-fill on webpages and elsewhere when the user needs instant access to them. They are always stored encrypted using 256-bit AES encryption, are stored on device and pushed from iCloud between devices, and only available on a user's trusted devices.

提交回复
热议问题