mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 16:53:34 +00:00
support user encryption key
This commit is contained in:
@@ -48,11 +48,12 @@ var TokenRequest = function (email, masterPasswordHash, token, device) {
|
||||
};
|
||||
};
|
||||
|
||||
var RegisterRequest = function (email, masterPasswordHash, masterPasswordHint) {
|
||||
var RegisterRequest = function (email, masterPasswordHash, masterPasswordHint, key) {
|
||||
this.name = null;
|
||||
this.email = email;
|
||||
this.masterPasswordHash = masterPasswordHash;
|
||||
this.masterPasswordHint = masterPasswordHint ? masterPasswordHint : null;
|
||||
this.key = key;
|
||||
};
|
||||
|
||||
var PasswordHintRequest = function (email) {
|
||||
|
||||
Reference in New Issue
Block a user