Clojure authentication library SPNEGO / Kerberos-http

I understand this is a long snapshot, but could there be a clojure library for responding to kerberos on http requests (aka spnego)?

I am currently studying the use of spring-security framework for this, but I thought that just in case, I would ask for a more friendly clojure approach.

+6
source share
1 answer

There is nothing special about integrating a clojure application with Spring Security. However, you are bound by your implementation as a servlet filter, so you cannot easily use it in a shared http library. In j2ee container this is a good choice.

0
source

Source: https://habr.com/ru/post/889043/


All Articles