mirror of
https://github.com/signalapp/libsignal.git
synced 2026-05-01 12:07:24 +02:00
15 lines
361 B
Swift
15 lines
361 B
Swift
//
|
|
// Copyright 2020-2021 Signal Messenger, LLC.
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public class ProfileKeyVersion: ByteArray, @unchecked Sendable {
|
|
public static let SIZE: Int = 64
|
|
|
|
public required init(contents: Data) throws {
|
|
try super.init(newContents: contents, expectedLength: ProfileKeyVersion.SIZE)
|
|
}
|
|
}
|