I took a look at the KeychainSwift implementation and it seems (unless I'm missing something) that it's thread safe since it's using a NSLock for synchronization.
This means that it could conform to Sendable, thus making modern concurrency adoption easier.
I took a look at the
KeychainSwift
implementation and it seems (unless I'm missing something) that it's thread safe since it's using aNSLock
for synchronization.This means that it could conform to
Sendable
, thus making modern concurrency adoption easier.