我可以在 iOS Secure Enclave 中存储的密钥数量是否有限制?
我已经阅读了 Apple关于 Secure Enclave 的文档(有很多相关页面)以及 Apple关于 security 的文档,但我没有找到任何关于 Secure Enclave 容量的信息。
我可以在 iOS Secure Enclave 中存储的密钥数量是否有限制?
我已经阅读了 Apple关于 Secure Enclave 的文档(有很多相关页面)以及 Apple关于 security 的文档,但我没有找到任何关于 Secure Enclave 容量的信息。
我尝试生成 1025 个密钥对来尝试 Secure Enclave 的容量。在 400 号左右,我开始收到错误消息。
所以我认为,有一个限制。但现在我不能说是尺寸限制还是数量限制。
根据 UserDefaults 和其他 *.plist。
来自iOS SDK代码,以及相关的Apple官方文档..
extension UserDefaults {
/*!
NSUserDefaultsSizeLimitExceededNotification is posted on the main queue when
more data is stored in user defaults than is allowed. Currently there is no
limit for local user defaults except on tvOS, where a warning notification will
be posted at 512kB, and the process terminated at 1MB. For ubiquitous defaults,
the limit depends on the logged in iCloud user.
*/
@available(iOS 9.3, *)
public class let sizeLimitExceededNotification: NSNotification.Name
// ....
}
概括