Sesame-iOS/Sesame/API/SesameHeader.swift

15 lines
239 B
Swift
Raw Normal View History

2023-12-12 17:33:42 +01:00
import Foundation
#if canImport(CryptoKit)
import CryptoKit
#else
import Crypto
#endif
enum SesameHeader {
static let authenticationHeader = "Authorization"
static let serverAuthenticationTokenSize = SHA256.byteCount
}