Popularity
3.1
Declining
Activity
0.0
Stable
1
3
1
Monthly Downloads: 8
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Tags:
Security
planb-token-introspection alternatives and similar packages
Based on the "Security" category.
Alternatively, view planb-token-introspection alternatives based on common mentions on social networks and blogs.
-
scyther-proof
A tool for the automatic generation of Isabelle/HOL correctness proofs for security protocols. -
wai-rate-limit
Rate limiting for Servant and as WAI middleware -
lmonad
Information Flow Control for Haskell applications -
smith-cli
This is a command line tool for interacting with https://smith.st -
openssh-protocol
Haskell implementation of openssh protocol primitives. -
smith-client
This is an API client library for interacting with https://smith.st -
paphragen
A passphrase generator which can also build dictionaries.
Access the most powerful time series database as a service
Ingest, store, & analyze all types of time series data in a fully-managed, purpose-built database. Keep data forever with low-cost storage and superior data compression.
Promo
www.influxdata.com
Do you think we are missing an alternative of planb-token-introspection or a related project?
README
Token Introspection for PlanB

This package provides token introspection functionality for PlanB.
Example
printTokenInfo :: ByteString -> IO ()
printTokenInfo token = do
introspector <- PlanB.new "https://planb-endpoint"
tokenInfo <- PlanB.introspectToken introspector token
print tokenInfo
If the PlanB introspection endpoint to use can be retrieved from the
environment variable PLANB_INTROSPECTION_ENDPOINT
, then one can
alternatively use
introspector <- PlanB.newFromEnv Nothing
for creating the PlanB introspector.