我最近更新了最新版本的Linphone库以遵循Apple的IPV6标准支持。 但它无法创建安全呼叫。 每次我尝试将呼叫转换为安全呼叫时,确认失败并且SAS返回null。 使用旧库(IPV4支持)也是如此。 我正在使用ZRTP加密进行安全呼叫。
自从过去15天以来,我一直在努力。 下面的代码行返回SAS值null。
NSString *localLize = NSLocalizedString(@"Confirm the following SAS with peer:\n%s", nil);
const char *authToken = linphone_call_get_authentication_token(call);
NSLog(@"localize %@ authToken %s",localLize,authToken);
以下是将呼叫转换为安全呼叫的完整功能。
- (IBAction)onSecurityClick:(id)sender {
if (linphone_core_get_calls_nb(LC)) {
LinphoneCall *call = linphone_core_get_current_call(LC);
if (call != NULL) {
//force encryption ZRTP
LinphoneMediaEncryption enc = LinphoneMediaEncryptionZRTP;
if (enc == LinphoneMediaEncryptionZRTP) {
NSString *localLize = NSLocalizedString(@"Confirm the following SAS with peer:\n%s", nil);
const char *authToken = linphone_call_get_authentication_token(call);
NSLog(@"localize %@ authToken %s",localLize,authToken);
NSString *message =
[NSString stringWithFormat:NSLocalizedString(@"Confirm the following SAS with peer:\n%s", nil),
linphone_call_get_authentication_token(call)];
if (securityDialog == nil) {
__block __strong StatusBarView *weakSelf = self;
securityDialog = [UIConfirmationDialog ShowWithMessage:message
cancelMessage:NSLocalizedString(@"DENY", nil)
confirmMessage:NSLocalizedString(@"ACCEPT", nil)
onCancelClick:^() {
if (linphone_core_get_current_call(LC) == call) {
linphone_call_set_authentication_token_verified(call, NO);
}
weakSelf->securityDialog = nil;
}
onConfirmationClick:^() {
if (linphone_core_get_current_call(LC) == call) {
linphone_call_set_authentication_token_verified(call, YES);
}
weakSelf->securityDialog = nil;
}];
}
}
}
}
}
任何帮助都应该是值得的。
先谢谢。
答案 0 :(得分:0)
所以我想出了对我来说有什么问题。也许对你也有用。
我在呼叫状态更改为linphone_call_get_authentication_token
后立即呼叫LinphoneCallOutgoingProgress
。我需要做的就是修复它是为了启动Timer
,当呼叫状态变为LinphoneCallOutgoingProgress
时,每隔1秒调用一次方法,因为看起来需要一些时间来生成SAS。这对我有用:
timer = Timer.scheduledTimer(withTimeInterval: 1.0, repeats: true) {
DispatchQueue.main.async {
let sas = linphone_call_get_authentication_token(Call.current())
if sas != nil {
self!.sasLabel.text = String(cString: sas!)
timer.invalidate()
}
}
}