mirror of
https://github.com/signalapp/libsignal.git
synced 2026-05-01 20:17:28 +02:00
14 lines
383 B
Swift
14 lines
383 B
Swift
//
|
|
// Copyright 2022 Signal Messenger, LLC.
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
//
|
|
|
|
import Foundation
|
|
import SignalFfi
|
|
|
|
public class ExpiringProfileKeyCredentialResponse: ByteArray, @unchecked Sendable {
|
|
public required init(contents: Data) throws {
|
|
try super.init(contents, checkValid: signal_expiring_profile_key_credential_response_check_valid_contents)
|
|
}
|
|
}
|