Files
libsignal/swift/Sources/LibSignalClient/zkgroup/ReceiptSerial.swift
2025-06-13 15:15:04 -04:00

15 lines
353 B
Swift

//
// Copyright 2020-2021 Signal Messenger, LLC.
// SPDX-License-Identifier: AGPL-3.0-only
//
import Foundation
public class ReceiptSerial: ByteArray, @unchecked Sendable {
public static let SIZE: Int = 16
public required init(contents: Data) throws {
try super.init(newContents: contents, expectedLength: ReceiptSerial.SIZE)
}
}