Micah Silverman
Micah Silverman
POC: ``` EstimateIterationsResult estimateIterationsResult = KeyAlgorithms.estimateIterations(PBES2_HS256_A128KW, 100); int index = 1; for (Result r : estimateIterationsResult.getResults()) { System.out.println("Iteration: " + (index++) + ", workFactor=" + r.getWorkFactor() + ", duration=" +...
In `JwtBuilder`, there's a variant of the `signWith` method: ``` JwtBuilder signWith(SignatureAlgorithm alg, String base64EncodedSecretKey); ``` Although the method signature is clear, people may misunderstand its intent. Removing this signature...
- [x] DisabledAccountStoreResolver - [x] Change `DefaultAccount` to use the Okta user endpoint - [ ] YAML config for Application object - Don't think we need this anymore? - [...
Currently, there is support for a number of okta properties, like: * okta.application.id * okta.api.token In order to work with okta, setting `stormpath.client.baseUrl` is required. It would be more consistent...
Do we need id and secret? username/password? token? something else?
Right now, we have a default landing page for spring boot apps that use the thyemleaf starter. This is in service of having an empty application, such as those generated...

The Spring Security integration should be enabled (or not) based both on classpath AND properties. Scenarios: 1. Spring Security is in classpath: We enable Stormpath Spring Security integration 2. Spring...
Per: https://github.com/stormpath/stormpath-framework-spec/blob/master/example-config.yaml#L10 And https://github.com/stormpath/stormpath-framework-spec/blob/master/example-config.yaml#L113 And https://github.com/stormpath/stormpath-framework-spec/blob/master/example-config.yaml#L181 we need to implement support for these multi-tenancy related properties. Also, NOTE: the `SpecConfigVersusWebPropertiesTest#verifyPropertiesInSpecAreInDefault` _must_ be re-enabled. It was temporarily disabled to avoid test...