You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficcontrol.apache.org by sr...@apache.org on 2023/05/08 20:17:06 UTC

[trafficcontrol] branch master updated (818408b0a6 -> 688d057713)

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

srijeet0406 pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/trafficcontrol.git


    from 818408b0a6 Maformed cookie error when empty (#7469)
     add 688d057713 Traffic Ops client certificate authentication (#7392)

No new revisions were added by this update.

Summary of changes:
 .../index.rst => quick_howto/client_cert_auth.rst} |  16 +-
 docs/source/admin/traffic_ops.rst                  |   7 +-
 .../certificate_auth/certs/generate_certs.go       | 445 +++++++++++++++++++++
 .../example/client/client.go}                      |  51 +--
 .../certificate_auth/example/server/server.go      |  43 +-
 .../util/util.go => lib/go-rfc/ldap/ldap.go        |  28 +-
 traffic_ops/app/conf/cdn.conf                      |   8 +-
 traffic_ops/app/conf/production/database.conf      |   1 -
 traffic_ops/build/traffic_ops.spec                 |   5 +-
 traffic_ops/traffic_ops_golang/auth/authorize.go   |   8 +-
 traffic_ops/traffic_ops_golang/auth/certificate.go | 184 +++++++++
 .../traffic_ops_golang/auth/certificate_test.go    | 367 +++++++++++++++++
 traffic_ops/traffic_ops_golang/config/config.go    |   5 +
 .../traffic_ops_golang/config/config_test.go       |   9 +-
 traffic_ops/traffic_ops_golang/login/login.go      | 263 +++++++-----
 .../traffic_ops_golang/traffic_ops_golang.go       |   4 +-
 16 files changed, 1264 insertions(+), 180 deletions(-)
 copy docs/source/admin/{t3c/index.rst => quick_howto/client_cert_auth.rst} (63%)
 create mode 100644 experimental/certificate_auth/certs/generate_certs.go
 copy experimental/{traffic_router_golang/fetch/http.go => certificate_auth/example/client/client.go} (56%)
 copy traffic_ops/traffic_ops_golang/ping/vault.go => experimental/certificate_auth/example/server/server.go (55%)
 copy cache-config/t3c-preprocess/util/util.go => lib/go-rfc/ldap/ldap.go (61%)
 create mode 100644 traffic_ops/traffic_ops_golang/auth/certificate.go
 create mode 100644 traffic_ops/traffic_ops_golang/auth/certificate_test.go