Encryption Algorithms
This framework comes with several encryption algorithms. These algorithms are in the following namespaces:
Jose\Component\Encryption\Algorithm\KeyEncryption
: key encryption algorithmsJose\Component\Encryption\Algorithm\ContentEncryption
: content encryption algorithmsFrom v1.2, the algorithms have their own sub-packages. To avoid BC breaks, these packages are automatically installed for all v1.x of the framework. Starting at v2.0, you will have to explicitly install the algorithm packages you need.
Key Encryption
Package
web-token/jwt-encryption-algorithm-aeskw
A128KW
A192KW
A256KW
Package
web-token/jwt-encryption-algorithm-aesgcmkw
A128GCMKW
A192GCMKW
A256GCMKW
Package
web-token/jwt-encryption-algorithm-dir
dir
(classDir
)
Package
web-token/jwt-encryption-algorithm-ecdh-es
ECDH-ES
(classECDHES
) READ THE NOTE BELOWECDH-ES+A128KW
(classECDHESA128KW
) READ THE NOTE BELOWECDH-ES+A192KW
(classECDHESA192KW
) READ THE NOTE BELOWECDH-ES+A256KW
(classECDHESA256KW
) READ THE NOTE BELOW
Package
web-token/jwt-encryption-algorithm-pbes2
PBES2-HS256+A128KW
(classPBES2HS256A128KW
)PBES2-HS384+A192KW
(classPBES2HS384A192KW
)PBES2-HS512+A259KW
(classPBES2HS512A1256KW
)
Package
web-token/jwt-encryption-algorithm-rsa
RSA1_5
(classRSA15
) READ THE NOTE BELOWRSA-OAEP
(classRSAOAEP
)RSA-OAEP-256
(classRSAOAEP256
)
Content Encryption
Package
web-token/jwt-encryption-algorithm-aesgcm
A128GCM
A192GCM
A256GCM
Package
web-token/jwt-encryption-algorithm-aescbc
A128CBC-HS256
(classA128CBCHS256
)A192CBC-HS384
(classA192CBCHS384
)A256CBC-HS512
(classA256CBCHS512
)
IMPORTANT NOTE:
The algorithm
RSA1_5
is deprecated due to known security vulnerability.The algorithms
ECDH-ES*
are not recommended unless used with theOKP
key type.
The following signature algorithms are experimental and must not be used in production unless you know what you are doing. They are proposed for testing purpose only.
They are all part of the package web-token/jwt-encryption-algorithm-experimental
Key Encryption
A128CTR
,A192CTR
andA256CTR
: AES CTR based encryption.Chacha20+Poly1305
: Please note that this algorithm requires OpenSSL 1.1RSA-OAEP-384
andRSA-OAEP-512
: Same algorithm as RSA-OAEP-256 but with SHA-384 and SHA-512 hashing functions.
Content Encryption
AxxxCCM-16-128
,AxxxCCM-16-64
,AxxxCCM-64-128
,AxxxCCM-64-64
: AES-CCM based aalgorithms. xxx can be 128 or 256.
How To Use
These algorithms have to be used with the Algorithm Manager. They do not need any arguments.
Example:
By default, PBES2*
algorithms use the following parameter values:
Salt size: 64 bytes (512 bits)
Count: 4096
You may need to use other values. This can be done during the instantiation of the algorithm:
Example with 16 bytes (128 bits) salt and 1024 counts:
Last updated