14 lines
461 B
Go
14 lines
461 B
Go
package account
|
|
|
|
import (
|
|
"github.com/anytypeio/go-anytype-infrastructure-experiments/util/keys/asymmetric/encryptionkey"
|
|
"github.com/anytypeio/go-anytype-infrastructure-experiments/util/keys/asymmetric/signingkey"
|
|
)
|
|
|
|
type AccountData struct { // TODO: create a convenient constructor for this
|
|
Identity string // TODO: this is essentially the same as sign key
|
|
SignKey signingkey.PrivKey
|
|
EncKey encryptionkey.PrivKey
|
|
Decoder signingkey.PubKeyDecoder
|
|
}
|