Uses of Class
edu.uiuc.ncsa.security.util.jwk.JSONWebKeys
-
Packages that use JSONWebKeys Package Description edu.uiuc.ncsa.security.util.jwk Support for JSON web keys. -
-
Uses of JSONWebKeys in edu.uiuc.ncsa.security.util.jwk
Methods in edu.uiuc.ncsa.security.util.jwk that return JSONWebKeys Modifier and Type Method Description static JSONWebKeys
JSONWebKeyUtil. fromJSON(File file)
Read a set of keys from a file.static JSONWebKeys
JSONWebKeyUtil. fromJSON(String raw)
static JSONWebKeys
JSONWebKeyUtil. fromJSON(net.sf.json.JSON json)
Takes either a standard JSON object of keys: {"keys":[...]} or a single key and turns it in a set of web keysJSONWebKeys
JWKUtil2. fromJSON(File file)
JSONWebKeys
JWKUtil2. fromJSON(String x)
JSONWebKeys
JWKUtil2. fromJSON(net.sf.json.JSON json)
static JSONWebKeys
JSONWebKeyUtil. fromXML(XMLEventReader xer)
This is not a complete deserialization, but is part of a larger scheme.static JSONWebKeys
JSONWebKeyUtil. makePublic(JSONWebKeys keys)
Very useful utility to take a set of keys and return another set of keys that are only the public parts.JSONWebKeys
JWKUtil2. makePublic(JSONWebKeys keys)
Methods in edu.uiuc.ncsa.security.util.jwk with parameters of type JSONWebKeys Modifier and Type Method Description static JSONWebKeys
JSONWebKeyUtil. makePublic(JSONWebKeys keys)
Very useful utility to take a set of keys and return another set of keys that are only the public parts.JSONWebKeys
JWKUtil2. makePublic(JSONWebKeys keys)
static net.sf.json.JSONObject
JSONWebKeyUtil. toJSON(JSONWebKeys webKeys)
Serialize a set of keys (as a java object) to JSON.net.sf.json.JSONObject
JWKUtil2. toJSON(JSONWebKeys webKeys)
static void
JSONWebKeyUtil. toXML(JSONWebKeys jwks, XMLStreamWriter xsw)
Not a complete serialization -- this is used to insert JSONweb keys into a larger serialization scheme.
-