Aerobase | Keycloak | WSO2 Identity Server | Gluu | CAS | OpenAM | Shibboleth IdP | |
---|---|---|---|---|---|---|---|
OpenID Connect/OAuth support | yes | yes | yes | yes | yes | yes | third-party |
Multi-factor authentication | yes | yes | yes | yes | yes | yes | yes |
Admin UI | yes | yes | yes | yes | yes | yes | no |
OpenJDK support | yes | yes | yes | yes | no | ||
Identity brokering | yes | yes | yes | ||||
Middleware | NGINX, Wildfly | Wildfly, JBOSS | WSO2 Carbon | Jetty, Apache HTTPD | any Java app server | any Java app server | Jetty, Tomc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local gpgGroup = vim.api.nvim_create_augroup("customGpg", { clear = true }) | |
vim.api.nvim_create_autocmd({ "BufReadPre", "FileReadPre" }, { | |
pattern = "*.gpg", | |
group = gpgGroup, | |
callback = function() | |
-- Make sure nothing is written to shada file while editing an encrypted file. | |
vim.opt_local.shada = nil | |
-- We don't want a swap file, as it writes unencrypted data to disk | |
vim.opt_local.swapfile = false |