Sesame-iOS/Sesame/API/Extensions/UInt32+Coding.swift

22 lines
564 B
Swift
Raw Normal View History

2022-04-28 23:19:44 +02:00
import Foundation
extension UInt32 {
/**
Create a value from a little-endian data representation (MSB first)
- Note: The data must contain exactly four bytes.
*/
init(data: Data) {
let value = data.convert(into: UInt32.zero)
self = CFSwapInt32LittleToHost(value)
}
/// The value encoded to a little-endian representation
var encoded: Data {
Data(from: CFSwapInt32HostToLittle(self))
}
2023-12-12 17:33:42 +01:00
/// The size of a `UInt32` when converted to data
static let byteSize = MemoryLayout<UInt32>.size
2022-04-28 23:19:44 +02:00
}