我正在尝试在 Javascript 中使用 OTR。为此,我使用arlolra 的 Github Javascript OTR。
我有一个工作原型来交换未加密的消息,默认情况下 OTR 是关闭加密的。由此,我假设我没有正确交换密钥,因此此后无法交换加密消息。
switch/case 函数OTR.CONST.STATUS_SEND_QUERY // 0
在发送方和OTR.CONST.STATUS_AKE_INIT // 1
接收方返回。
但状态永远不会变为OTR.CONST.STATUS_AKE_SUCCESS
。
之后如何正确切换到OTR.CONST.STATUS_AKE_SUCCESS
并发送加密消息?
在发送方:为 OTR 加密创建初始化消息
otrClient.sendQueryMsg();
通过客户端将消息发送到另一端
// send query the message over otr
otrClient.on('io', function(msg, meta) {
var message = {
type: 'chat',
body: msg,
extension: {
save_to_history: 1,
dialog_id: conversationId
},
markable: 1
};
// third party sending;
});
在接收方:
通过第三方提供的监听器获取消息。
// MessageListener for OTR
Thirdparty.chat.onMessageListener = function(userId, message) {
otrClient.receiveMsg(message.body);
console.log('userId ' + userId);
console.log('messageobject');
console.log(message);
callOTRState();
};
处理消息的 OTR 客户端
// Receiver reading message
otrClient.on('ui', function(msg, encrypted, meta) {
console.log('callback called');
console.log('msg: ' + msg);
console.log('encrypted: ' + encrypted);
console.log('meta: ' + meta);
callOTRState();
});
跟踪密钥交换状态的功能:
// querying OTR status
function callOTRState() {
otrClient.on('status', function(state) {
switch (state) {
case OTR.CONST.STATUS_SEND_QUERY:
// status send query
console.log('OTR.CONST.STATUS_SEND_QUERY // 0');
break;
case OTR.CONST.STATUS_AKE_INIT:
// status OTR.CONST.STATUS_AKE_INIT
console.log('OTR.CONST.STATUS_AKE_INIT // 1');
break;
case OTR.CONST.STATUS_AKE_SUCCESS:
// sucessfully ake'd with buddy
console.log('OTR.CONST.STATUS_AKE_SUCCESS // 2');
// check if buddy.msgstate === OTR.CONST.MSGSTATE_ENCRYPTED
// Send here a message saying hello
sendNewMessage();
break;
case OTR.CONST.STATUS_END_OTR:
// if buddy.msgstate === OTR.CONST.MSGSTATE_FINISHED
// inform the user that his correspondent has closed his end
// of the private connection and the user should do the same
console.log('OTR.CONST.STATUS_END_OTR // 3');
break;
}
});
}
打开 OTR 加密后发送消息的功能。
//send new message
function sendNewMessage() {
otrClient.sendMsg('Hello?');
otrClient.on('io', function(msg, meta) {
var message2 = {
type: 'chat',
body: msg
};
Thirdparty.send(idChattee, message2);
});
}
});