This is an automated email from the ASF dual-hosted git repository.

smihaylov pushed a change to branch develop
in repository https://gitbox.apache.org/repos/asf/incubator-milagro-dta.git.


    from f8c4f06  Add missing Apache headers
     new ef993c8  CreateIdentity as a new package
     new dffff97  KeyStore interface to keep secrets
     new 6bc9bc4  Refactor identity secrets

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 cmd/service/commands.go                            |   1 +
 cmd/service/initnode.go                            |  50 -------
 cmd/service/main.go                                |  51 +++----
 cmd/servicetester/e2e_test.sh                      | 112 ++++++++--------
 go.sum                                             |  14 ++
 libs/documents/crypto.go                           |   2 +-
 libs/documents/docs.go                             |  21 ++-
 libs/documents/docs_test.go                        |  19 ++-
 libs/keystore/filestore.go                         | 111 ++++++++++++++++
 libs/keystore/filestore_test.go                    |  85 ++++++++++++
 .../customvalidators.go => keystore/keystore.go}   |  21 +--
 .../gobcodec.go => keystore/memorystore.go}        |  50 ++++---
 .../keystore/memorystore_test.go                   |  28 +++-
 pkg/bitcoinplugin/helpers.go                       |   2 +-
 pkg/common/common.go                               | 103 +++------------
 pkg/defaultservice/fulfill.go                      |  21 ++-
 pkg/defaultservice/identity.go                     | 146 ---------------------
 pkg/defaultservice/init.go                         |  13 +-
 pkg/defaultservice/order.go                        |  49 ++++---
 pkg/defaultservice/service.go                      |   2 +
 pkg/endpoints/endpoints.go                         | 101 +-------------
 pkg/identity/identity.go                           | 121 +++++++++++++++++
 .../identity/identity_test.go                      |  29 +++-
 pkg/identity/keys.go                               |  63 +++++++++
 pkg/service/service.go                             |   5 -
 25 files changed, 662 insertions(+), 558 deletions(-)
 create mode 100644 libs/keystore/filestore.go
 create mode 100644 libs/keystore/filestore_test.go
 copy libs/{validators/customvalidators.go => keystore/keystore.go} (67%)
 copy libs/{datastore/gobcodec.go => keystore/memorystore.go} (55%)
 copy plugins/safeguardsecret.go => libs/keystore/memorystore_test.go (63%)
 delete mode 100644 pkg/defaultservice/identity.go
 create mode 100644 pkg/identity/identity.go
 copy plugins/safeguardsecret.go => pkg/identity/identity_test.go (59%)
 create mode 100644 pkg/identity/keys.go

Reply via email to