Algorithm Management
Algorithm Manager Factory Service
The Symfony Bundle provides an Algorithm Manager Factory service. The available algorithms depends on the components installed on your application.
Custom Algorithm
This factory handles all algorithms services tagged with jose.algorithm
.
Example:
Your algorithm will be available through the algorithm manager factory service and the alias FOO
.
PBES2-* Algorithms
When installed, the PBES2-*
algorithms available throught the algorithm manager factory. They have the default configuration i.e. salt size = 62 bits and count = 4096. If these values does not fit on your needs, you can create a new algorithm service with your own values:
You can now use your custom alias:
Last updated