You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by rn...@apache.org on 2020/04/27 14:01:00 UTC

[couchdb] branch prototype/fdb-layer updated (232e1d5 -> 43da896)

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

rnewson pushed a change to branch prototype/fdb-layer
in repository https://gitbox.apache.org/repos/asf/couchdb.git.


    from 232e1d5  Report the chttpd_auth authentication db in session info
     add a5fded8  Add native encryption support
     new 43da896  Merge pull request #2826 from apache/aegis

The 1 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:
 configure                                          |  19 ++
 rebar.config.script                                |   1 +
 rel/reltool.config                                 |   2 +
 src/{ken => aegis}/rebar.config.script             |  27 +-
 .../src/aegis.app.src}                             |  30 ++-
 src/aegis/src/aegis.erl                            |  72 ++++++
 src/aegis/src/aegis.hrl                            |  57 +++++
 .../src/ioq_app.erl => aegis/src/aegis_app.erl}    |   9 +-
 .../src/aegis_key_manager.erl}                     |  13 +-
 .../src/aegis_keywrap.erl}                         |  34 ++-
 .../src/aegis_noop_key_manager.erl}                |  18 +-
 src/aegis/src/aegis_server.erl                     | 275 +++++++++++++++++++++
 .../couch_rate_sup.erl => aegis/src/aegis_sup.erl} |  18 +-
 .../test/aegis_basic_test.erl}                     |   6 +-
 src/aegis/test/aegis_server_test.erl               | 165 +++++++++++++
 src/chttpd/src/chttpd.erl                          |   8 +
 src/couch_views/src/couch_views_fdb.erl            |   8 +-
 src/fabric/include/fabric2.hrl                     |   1 +
 src/fabric/src/fabric.app.src                      |   3 +-
 src/fabric/src/fabric2_fdb.erl                     |  31 ++-
 20 files changed, 715 insertions(+), 82 deletions(-)
 copy src/{ken => aegis}/rebar.config.script (50%)
 copy src/{couch_plugins/src/couch_plugins.app.src => aegis/src/aegis.app.src} (62%)
 create mode 100644 src/aegis/src/aegis.erl
 create mode 100644 src/aegis/src/aegis.hrl
 copy src/{ioq/src/ioq_app.erl => aegis/src/aegis_app.erl} (92%)
 copy src/{ddoc_cache/src/ddoc_cache_app.erl => aegis/src/aegis_key_manager.erl} (76%)
 rename src/{couch/src/couch_keywrap.erl => aegis/src/aegis_keywrap.erl} (84%)
 copy src/{couch_js/src/couch_js_app.erl => aegis/src/aegis_noop_key_manager.erl} (77%)
 create mode 100644 src/aegis/src/aegis_server.erl
 copy src/{couch_rate/src/couch_rate_sup.erl => aegis/src/aegis_sup.erl} (78%)
 copy src/{couch_replicator/src/couch_replicator_scheduler.hrl => aegis/test/aegis_basic_test.erl} (83%)
 create mode 100644 src/aegis/test/aegis_server_test.erl


[couchdb] 01/01: Merge pull request #2826 from apache/aegis

Posted by rn...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

rnewson pushed a commit to branch prototype/fdb-layer
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit 43da896496fc6ce87d5a341cd98a03cebd51c169
Merge: 232e1d5 a5fded8
Author: Robert Newson <rn...@apache.org>
AuthorDate: Mon Apr 27 15:00:47 2020 +0100

    Merge pull request #2826 from apache/aegis
    
    Add native encryption support

 configure                                          |  19 ++
 rebar.config.script                                |   1 +
 rel/reltool.config                                 |   2 +
 src/aegis/rebar.config.script                      |  35 +++
 .../src/fabric.app.src => aegis/src/aegis.app.src} |  43 ++--
 src/aegis/src/aegis.erl                            |  72 ++++++
 src/aegis/src/aegis.hrl                            |  57 +++++
 .../src/fabric.app.src => aegis/src/aegis_app.erl} |  35 ++-
 .../src/aegis_key_manager.erl}                     |  31 +--
 .../src/aegis_keywrap.erl}                         |  34 ++-
 .../src/aegis_noop_key_manager.erl}                |  40 ++-
 src/aegis/src/aegis_server.erl                     | 275 +++++++++++++++++++++
 .../src/fabric.app.src => aegis/src/aegis_sup.erl} |  55 +++--
 .../test/aegis_basic_test.erl}                     |  26 +-
 src/aegis/test/aegis_server_test.erl               | 165 +++++++++++++
 src/chttpd/src/chttpd.erl                          |   8 +
 src/couch_views/src/couch_views_fdb.erl            |   8 +-
 src/fabric/include/fabric2.hrl                     |   1 +
 src/fabric/src/fabric.app.src                      |   3 +-
 src/fabric/src/fabric2_fdb.erl                     |  31 ++-
 20 files changed, 777 insertions(+), 164 deletions(-)