Hello Bahador,
Yes, oxAuth supports encrypted JWE Authorization Request Object. (Also supports encrypted id_token and user_info).
In the configuration endpoint you can see the list of supported algorithms:
https://ce-dev4.gluu.org/.well-known/openid-configuration
```
"request_object_encryption_alg_values_supported": [
"RSA1_5",
"RSA-OAEP",
"A128KW",
"A256KW"
],
"request_object_encryption_enc_values_supported": [
"A128CBC+HS256",
"A256CBC+HS512",
"A128GCM",
"A256GCM"
],
```
Here is a complete example that uses Alg=RSA15 and Enc=A128CBCPLUSHS256 to encrypt the Authorization Request Object, the ID Token and the User Info:
https://github.com/GluuFederation/oxAuth/blob/master/Client/src/test/java/org/xdi/oxauth/ws/rs/MultivaluedClaims.java#L2584
Best Regards
Javier