在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称:signalapp/libsignal-protocol-javascript开源软件地址:https://github.com/signalapp/libsignal-protocol-javascript开源编程语言:JavaScript 91.8%开源软件介绍:Deprecation Warning: It is recommended that the TypeScript interface of libsignal-client be used for all new applications. This library is no longer used by us or maintained. libsignal-protocol-javascriptSignal Protocol implementation for the browser based on libsignal-protocol-java.
OverviewA ratcheting forward secrecy protocol that works in synchronous and asynchronous messaging environments. PreKeysThis protocol uses a concept called 'PreKeys'. A PreKey is an ECPublicKey and an associated unique ID which are stored together by a server. PreKeys can also be signed. At install time, clients generate a single signed PreKey, as well as a large list of unsigned PreKeys, and transmit all of them to the server. SessionsSignal Protocol is session-oriented. Clients establish a "session," which is then used for all subsequent encrypt/decrypt operations. There is no need to ever tear down a session once one has been established. Sessions are established in one of two ways:
StateAn established session encapsulates a lot of state between two clients. That state is maintained in durable records which need to be kept for the life of the session. State is kept in the following places:
RequirementsThis implementation currently depends on the presence of the following types/interfaces, which are available in most modern browsers.
UsageInclude Install timeAt install time, a libsignal client needs to generate its identity keys, registration id, and prekeys. var KeyHelper = libsignal.KeyHelper;
var registrationId = KeyHelper.generateRegistrationId();
// Store registrationId somewhere durable and safe.
KeyHelper.generateIdentityKeyPair().then(function(identityKeyPair) {
// keyPair -> { pubKey: ArrayBuffer, privKey: ArrayBuffer }
// Store identityKeyPair somewhere durable and safe.
});
KeyHelper.generatePreKey(keyId).then(function(preKey) {
store.storePreKey(preKey.keyId, preKey.keyPair);
});
KeyHelper.generateSignedPreKey(identityKeyPair, keyId).then(function(signedPreKey) {
store.storeSignedPreKey(signedPreKey.keyId, signedPreKey.keyPair);
});
// Register preKeys and signedPreKey with the server Building a sessionA libsignal client needs to implement a storage interface that will manage
loading and storing of identity, prekeys, signed prekeys, and session state.
See Once this is implemented, building a session is fairly straightforward: var store = new MySignalProtocolStore();
var address = new libsignal.SignalProtocolAddress(recipientId, deviceId);
// Instantiate a SessionBuilder for a remote recipientId + deviceId tuple.
var sessionBuilder = new libsignal.SessionBuilder(store, address);
// Process a prekey fetched from the server. Returns a promise that resolves
// once a session is created and saved in the store, or rejects if the
// identityKey differs from a previously seen identity for this address.
var promise = sessionBuilder.processPreKey({
registrationId: <Number>,
identityKey: <ArrayBuffer>,
signedPreKey: {
keyId : <Number>,
publicKey : <ArrayBuffer>,
signature : <ArrayBuffer>
},
preKey: {
keyId : <Number>,
publicKey : <ArrayBuffer>
}
});
promise.then(function onsuccess() {
// encrypt messages
});
promise.catch(function onerror(error) {
// handle identity key conflict
}); EncryptingOnce you have a session established with an address, you can encrypt messages using SessionCipher. var plaintext = "Hello world";
var sessionCipher = new libsignal.SessionCipher(store, address);
sessionCipher.encrypt(plaintext).then(function(ciphertext) {
// ciphertext -> { type: <Number>, body: <string> }
handle(ciphertext.type, ciphertext.body);
}); DecryptingCiphertexts come in two flavors: WhisperMessage and PreKeyWhisperMessage. var address = new SignalProtocolAddress(recipientId, deviceId);
var sessionCipher = new SessionCipher(store, address);
// Decrypt a PreKeyWhisperMessage by first establishing a new session.
// Returns a promise that resolves when the message is decrypted or
// rejects if the identityKey differs from a previously seen identity for this
// address.
sessionCipher.decryptPreKeyWhisperMessage(ciphertext).then(function(plaintext) {
// handle plaintext ArrayBuffer
}).catch(function(error) {
// handle identity key conflict
});
// Decrypt a normal message using an existing session
var sessionCipher = new SessionCipher(store, address);
sessionCipher.decryptWhisperMessage(ciphertext).then(function(plaintext) {
// handle plaintext ArrayBuffer
}); BuildingTo compile curve25519 from C source files in
LicenseCopyright 2015-2018 Open Whisper Systems Licensed under the GPLv3: http://www.gnu.org/licenses/gpl-3.0.html |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论