21 lines
419 B
Objective-C
21 lines
419 B
Objective-C
//
|
|
// TokenGenerator.h
|
|
// SellyCloudSDK_Example
|
|
//
|
|
// Created by Caleb on 20/11/25.
|
|
// Copyright © 2025 Caleb. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <CommonCrypto/CommonCrypto.h>
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface TokenGenerator : NSObject
|
|
+ (NSString *)generateTokenWithUserId:(NSString *)userId
|
|
callId:(NSString *)callId;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|