Sesame-Server/Sources/App/API/SesameHeader.swift
2023-12-08 12:39:10 +01:00

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
}