-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAE_wallet.js
43 lines (34 loc) · 1.42 KB
/
AE_wallet.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
const AEL = require ("./AE_libray");
class AE_rootWallet {
constructor() {
this.mnemonic = "",
this.base_HDWallet = "",
// derivation Z0_A0_A
this.identity_derivation = "",
this.identity_HDWallet = ""
}
setMnemonic (mnemonicStr) {
this.mnemonic = mnemonicStr;
this.base_HDWallet = AEL.createHDWalletFromMnemonic(this.mnemonic);
}
setIdentityDerivation (identityDerivationStr) {
this.identity_derivation = identityDerivationStr;
this.identity_HDWallet = AEL.getHDWalletDerivation(this.base_HDWallet, this.identity_derivation);
this.identity_ExtPublicKey = AEL.getPublicExtendedKey(this.identity_HDWallet);
}
baseVerifyLoginChallenge (challengeStr, signatureStr, derivationObj){
// YET not working
// AcmeAcademy verifies signature with the original challenge and the extendedPublicKey AcmeAcademy calculated from the User PubK + Derivation <------
return AEL.verifyMessageByPublicExtendedKey(challengeStr,signatureStr,
AEL.getPublicExtendedKey(
AEL.getHDWalletDerivation(
AEL.createRO_HDWalletFromPublicExtendedKey(derivationObj.other_extendedPublicKey),
"m/0"
)
)
);
}
}
module.exports = {
AE_rootWallet: AE_rootWallet
}