Sesame-Server/Sources/App/API/SesameHeader.swift

15 lines
240 B
Swift
Raw Normal View History

2023-12-08 12:39:10 +01:00
import Foundation
#if canImport(CryptoKit)
import CryptoKit
#else
import Crypto
#endif
enum SesameHeader {
static let authenticationHeader = "Authentication"
static let serverAuthenticationTokenSize = SHA256.byteCount
}