> In what context do you want to use it? For example CMS, certificates, TLS,
general application code or via the command line?
It's a C++ embedded application for a POS. One requirement is to use PKCS#1
v2.1 for RSA functions.
Davy Alves de Souza
Computer Scientist
Federal University of S
On Tue, Apr 11, 2017, Schmicker, Robert wrote:
> Added a define in include/openssl/ssl.h:
># define SSL_TXT_MYCIPHER "MYCIPHER"
>
> Integrated into ssl/s3_lib.c:
>static SSL_CIPHER ssl3_ciphers[] = {
>
>{
> 1,
> TLS1_TXT_ECDHE_ECDSA_WITH_MYCIPHER_SHA384,
> TLS1_CK_E
> On Apr 11, 2017, at 11:58 AM, Salz, Rich via openssl-users
> wrote:
>
>>> in my case, i need to initialize the SSL , and set parameters as same as
>>> client and server (depending on direction ) and call OpenSSL to decrypt
>>> the data.
>>> before openSSL 1.1.0 as all member variables coul
>>in my case, i need to initialize the SSL , and set parameters as same
as client and server (depending on direction ) and call OpenSSL to decrypt the
data.
>>before openSSL 1.1.0 as all member variables could be set, it was easy
task,
>> now i do face issues with ssl_session
h support now available see: http://www.openssl.org
>
>
> --
>
> Message: 5
> Date: Tue, 11 Apr 2017 02:20:32 +0530
> From: Stiju Easo
> To: openssl-users@openssl.org
> Subject: [openssl-users] ssl_method_st not defined
> M
Hi All!
I'm not an expert, by any means, with cipher suites, etc. I am working with
an HTTPD server where I am not able to set the server/kernel to FIPS mode
nor am I able to set the HTTPD server (openssl) to FIPS mode. However, I am
able to modify the SSLCipherSuite directive.
Doing some playing
On 11-04-17 10:56, c.hol...@ades.at wrote:
> Hi!
>
> Is it possible to get the distinguished name of issuer or subject in a
> escaped form out of the box?
Escaped for what? XML? SQL? HTML? Shell scripts? Maybe something else?
"Escaped form" isn't something that exists as a generic term. If you
w
Hi!
Is it possible to get the distinguished name of issuer or subject in a
escaped form out of the box?
e.g.
C=US, O=test, Inc., OU=department=1, CN=tester "
C=US, O=test\, Inc., OU=department\=1, CN=tester \"
cheers,
chris
--
openssl-users mailing list
To unsubscribe: https://mta.openssl.o
Hi,
What are you trying to do? Why are you modifying the session, outside
of the TLS protocol?
>> what i am trying to do is to write a code which intercepts the SSL
traffic, and decrypt it.
>>i do have valid key for SSL traffic,
>>in my case, i need to initialize the SSL , a