15 lines
240 B
Swift
15 lines
240 B
Swift
import Foundation
|
|
#if canImport(CryptoKit)
|
|
import CryptoKit
|
|
#else
|
|
import Crypto
|
|
#endif
|
|
|
|
enum SesameHeader {
|
|
|
|
static let authenticationHeader = "Authentication"
|
|
|
|
static let serverAuthenticationTokenSize = SHA256.byteCount
|
|
|
|
}
|