does qpid proton c++ support SASL SCRAM-SHA-256

2024-03-19 Thread abdelrhman abdelhmaed
Hi, I am using the qpid proton library to connect to Broker( Apache ActiveMQ Artemis). The authentication mechanism must be SALS SCRAM_SHA-256. i tried to configure Qpid proton client to use this mechanism via the following methods std::string MECHANISM = "SCRAM-SHA-256";

Re: does qpid proton c++ support SASL SCRAM-SHA-256

2024-03-19 Thread Gordon Sim
On linux, proton uses the cyrus-sasl libraries. Different mechanisms are often pacakged separately. So if on linux, check that you have the right cyrus sasl plugin installed. On Tue, Mar 19, 2024 at 11:33 AM abdelrhman abdelhmaed wrote: > > Hi, > I am using the qpid proton library to connect to B

Re: does qpid proton c++ support SASL SCRAM-SHA-256

2024-03-19 Thread Robbie Gemmell
I haven't tried it to know for sure, but I would expect it to if you have installed the relevant cyrus-sasl packages to provide support for it (e.g cyrus-sasl-devel and cyrus-sasl-scram). Proton certainly supports SCRAM-SHA-1 from way back, when thats all cyrus did, so I'd expect it to work with SC