Topic: Setting RSA key exchange as cipher suite for context in python2.7 wrap
Hi,
I am working on a university project trying to understand previous versions of WolfSSL. Specifically WolfSSL 0.1.2.
I am currently working with python 2.7 (since the build for was depreciated in python3) in a Linux enviornment.
I ran simple client-server codes to play with and see how things work and everything was fine.
As part of my project, I want to check specifically communication with the cipher suite TLS_RSA_WITH_AES_256_CBC_SHA.
I tried using the context.set_ciphers() function on the server-side, and in various ways, and nothing worked.
When I say nothing worked, I get the error:
`wolfssl.exceptions.SSLError: Unnable to set cipher list`
At first, I thought that it maybe is not supported in this version of WolfSSL, but when analyzing the communication that did work, I saw that Server Hello sent TLS-ECDHE-RSA-WITH-AES-256-GCM-SHA384. I tried using set_cipher() on this, expecting everything to work since it was what the server used by default, however I got the same error.
Thank you in advance.