mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 01:47:41 +00:00
13 lines
300 B
Swift
13 lines
300 B
Swift
|
import Foundation
|
||
|
|
||
|
func secRandom(count: Int) -> Data? {
|
||
|
var bytes = [Int8](repeating: 0, count: count)
|
||
|
let status = SecRandomCopyBytes(kSecRandomDefault, bytes.count, &bytes)
|
||
|
|
||
|
if status == errSecSuccess {
|
||
|
return Data(bytes: bytes, count: bytes.count)
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|