You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.3 KiB
JavaScript
43 lines
1.3 KiB
JavaScript
/*
|
|
* vim: ts=4:sw=4:expandtab
|
|
*/
|
|
(function () {
|
|
'use strict';
|
|
window.Whisper = window.Whisper || {};
|
|
|
|
Whisper.KeyVerificationView = Whisper.View.extend({
|
|
className: 'key-verification',
|
|
templateName: 'key-verification',
|
|
events: {
|
|
'click .back': 'goBack'
|
|
},
|
|
goBack: function() {
|
|
this.trigger('back');
|
|
},
|
|
splitKey: function(key) {
|
|
// key is an array buffer
|
|
var bytes = new Uint8Array(key);
|
|
var octets = [];
|
|
for (var i = 0; i < bytes.byteLength; ++i) {
|
|
octets.push(('0' + bytes[i].toString(16)).slice(-2));
|
|
}
|
|
|
|
return octets;
|
|
},
|
|
render_attributes: function() {
|
|
var attributes = {
|
|
verifyIdentity: i18n('verifyIdentity'),
|
|
yourIdentity: i18n('yourIdentity'),
|
|
theirIdentity: i18n('theirIdentity'),
|
|
your_key: this.splitKey(this.model.your_key),
|
|
};
|
|
if(this.model.their_key) {
|
|
attributes.their_key = this.splitKey(this.model.their_key);
|
|
} else {
|
|
attributes.their_key_unknown = i18n('theirIdentityUnknown');
|
|
}
|
|
return attributes;
|
|
}
|
|
});
|
|
})();
|