Add support for new fingerprint format
This will be ready to roll whenever Android/iOS is. // FREEBIE
This commit is contained in:
parent
254b6621c2
commit
645e05c2b9
4 changed files with 55 additions and 6 deletions
|
@ -5,9 +5,45 @@
|
|||
'use strict';
|
||||
window.Whisper = window.Whisper || {};
|
||||
|
||||
var SecurityNumberView = Whisper.View.extend({
|
||||
className: 'securityNumber',
|
||||
templateName: 'security_number',
|
||||
initialize: function() {
|
||||
this.generateSecurityNumber();
|
||||
},
|
||||
generateSecurityNumber: function() {
|
||||
new libsignal.FingerprintGenerator(5200).createFor(
|
||||
this.model.your_number,
|
||||
this.model.your_key,
|
||||
this.model.their_number,
|
||||
this.model.their_key
|
||||
).then(this.handleSecurityNumber.bind(this));
|
||||
},
|
||||
handleSecurityNumber: function(securityNumber) {
|
||||
this.model.securityNumber = securityNumber;
|
||||
this.render();
|
||||
},
|
||||
render_attributes: function() {
|
||||
var s = this.model.securityNumber;
|
||||
var chunks = [];
|
||||
for (var i = 0; i < s.length; i += 5) {
|
||||
chunks.push(s.substring(i, i+5));
|
||||
}
|
||||
return { chunks: chunks };
|
||||
}
|
||||
});
|
||||
|
||||
Whisper.KeyVerificationView = Whisper.View.extend({
|
||||
className: 'key-verification',
|
||||
templateName: 'key_verification',
|
||||
initialize: function() {
|
||||
this.render();
|
||||
/*
|
||||
this.$('.securityNumber').append(
|
||||
new SecurityNumberView({model: this.model}).el
|
||||
);
|
||||
*/
|
||||
},
|
||||
splitKey: function(key) {
|
||||
// key is an array buffer
|
||||
var bytes = new Uint8Array(key);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue