valum-framework / valum

Web micro-framework written in Vala
https://valum-framework.readthedocs.io/en/latest/
GNU Lesser General Public License v3.0
225 stars 23 forks source link

Middlewares for basic and digest authentication. #189

Closed arteymix closed 7 years ago

arteymix commented 7 years ago

It could be interesting to explore a HMAC-based authentication mechanism as well as the digest one.

arteymix commented 7 years ago

Digest is a bit more complicated than expected, so I think it's best to include only basic authentication for now.

codecov-io commented 7 years ago

Current coverage is 64.85% (diff: 88.33%)

Merging #189 into master will increase coverage by <.01%

@@             master       #189   diff @@
==========================================
  Files            33         39     +6   
  Lines          1084       1161    +77   
  Methods           0          0          
  Messages          0          0          
  Branches        118        136    +18   
==========================================
+ Hits            703        753    +50   
- Misses          340        364    +24   
- Partials         41         44     +3   

Powered by Codecov. Last update c3162ae...7ab7bb5

arteymix commented 7 years ago

Implementing digest upon that is a piece of cake, so it's better to have basic authentication for now.