Package org.codice.ddf.security.jaxrs
Interface SamlSecurity
public interface SamlSecurity
-
Method Summary
Modifier and TypeMethodDescriptionbase64Decode(String base64EncodedValue) Decodes Base64 encoded valuesdeflateAndBase64Encode(String value) Deflates a value and Base64 encodes the result.inflateBase64(String base64EncodedValue) Decodes from base64 and then inflates the result
-
Method Details
-
deflateAndBase64Encode
Deflates a value and Base64 encodes the result.- Parameters:
value- value to deflate and Base64 encode- Returns:
- String
- Throws:
IOException- if the value cannot be converted
-
inflateBase64
Decodes from base64 and then inflates the result- Parameters:
base64EncodedValue-- Returns:
- String
- Throws:
IOException
-
base64Decode
Decodes Base64 encoded values- Parameters:
base64EncodedValue- value to decode- Returns:
- decoded value
-