Topic: TLS_PSK_WITH_AES_128_CBC_SHA256 not available with DTLS ?
Hi,
I tried to connect wolfssl(3.6.0) to Eclipse Scandium (master).
I use wolf as a client(./examples/client/client) and scandium as server (ExampleDTLSServer.class).
I try to use PSK but it seems there is no cipher suite compatible.
Scandium support only : TLS_PSK_WITH_AES_128_CCM_8 and TLS_PSK_WITH_AES_128_CBC_SHA256 for PSK.
I configure wolfssl to use PSK like that:
./configure --enable-dtls --enable-psk
./examples/client/client -h 127.0.0.1 -p 5684 -u -v 3 -s
With wireshark I see the Client Hello contains only: Cipher Suite: TLS_DHE_PSK_WITH_AES_128_GCM_SHA256.
I looked at the doc and TLS_PSK_WITH_AES_128_CBC_SHA256 should be supported too.
I probably missed something ?
Simon
P.S : It could be great if wolfssl supports this 2 cipher suite TLS_PSK_WITH_AES_128_CCM_8 and TLS_PSK_WITH_AES_128_CBC_SHA256 as they was mandatory in OMA Lightweight M2M specification [ last one was : OMA-TS-LightweightM2M-V1_0-20150707-D].