apache / incubator-teaclave

Apache Teaclave (incubating) is an open source universal secure computing platform, making computation on privacy-sensitive data safe and simple.
https://teaclave.apache.org
Apache License 2.0
761 stars 158 forks source link

Access control service #674

Closed henrysun007 closed 1 year ago

henrysun007 commented 1 year ago

Although documented in README, the acs is actually not used by management service in the implementation. Why? Do you have any potential improvement towards the acs? Please provide some background information. Thanks.

mssun commented 1 year ago

Yes, ACS is designed to be the service to evaluate the access control policy. Using a dedicated service makes the policy evaluation more flexible. However, we didn't have time to integrate with the current ACS. In the current implementation, access control policy is hard coded in the management service.

henrysun007 commented 1 year ago

Thanks!