|
|
|
@ -19,8 +19,8 @@ import (
|
|
|
|
|
|
|
|
|
|
// MemoryAccount is an account type converted from Account.
|
|
|
|
|
type MemoryAccount struct {
|
|
|
|
|
Cipher Cipher
|
|
|
|
|
Key []byte
|
|
|
|
|
Cipher Cipher
|
|
|
|
|
Key []byte
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Equals implements protocol.Account.Equals().
|
|
|
|
@ -87,8 +87,8 @@ func (a *Account) AsAccount() (protocol.Account, error) {
|
|
|
|
|
return nil, newError("failed to get cipher").Base(err)
|
|
|
|
|
}
|
|
|
|
|
return &MemoryAccount{
|
|
|
|
|
Cipher: cipher,
|
|
|
|
|
Key: passwordToCipherKey([]byte(a.Password), cipher.KeySize()),
|
|
|
|
|
Cipher: cipher,
|
|
|
|
|
Key: passwordToCipherKey([]byte(a.Password), cipher.KeySize()),
|
|
|
|
|
}, nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|