The issue came up in this post: https://www.b4x.com/android/forum/threads/http-digest-authorization-fails-in-b4a.158831/
Currently, HttpJob/OkHttpUtils2 only supports the MD5 digest algorithm. The OP needed support for SHA256. Even though there are other ways of achieving that goal (via B4X code as done by @aeric) or taking the current OkHttpClientWrapper and adding SHA256 support (as done by @drgottjr) it would be nice if this (and any other algorithm mentioned in RFC7616) would be supported out of the box by B4X
Currently, HttpJob/OkHttpUtils2 only supports the MD5 digest algorithm. The OP needed support for SHA256. Even though there are other ways of achieving that goal (via B4X code as done by @aeric) or taking the current OkHttpClientWrapper and adding SHA256 support (as done by @drgottjr) it would be nice if this (and any other algorithm mentioned in RFC7616) would be supported out of the box by B4X
RFC 7616: HTTP Digest Access Authentication
The Hypertext Transfer Protocol (HTTP) provides a simple challenge- response authentication mechanism that may be used by a server to challenge a client request and by a client to provide authentication information. This document defines the HTTP Digest Authentication scheme that can be used...
datatracker.ietf.org