Re: CRYPTO_mem_leaks Error in openssl 1.1.1d

2020-11-10 Thread shiva kumar
Can you please provide me examples or links to refer it.

On Tue, 10 Nov 2020 at 7:04 PM, Matt Caswell  wrote:

>
>
> On 10/11/2020 13:25, shiva kumar wrote:
> > Any alternatives for this, if the compiled version doesn't enabled the
> flag?
>
> valgrind?
>
>
> Matt
>
> >
> > On Tue, 10 Nov 2020 at 4:52 PM, Matt Caswell  > <mailto:m...@openssl.org>> wrote:
> >
> >
> >
> > On 10/11/2020 09:19, shiva kumar wrote:
> > > Hi,
> > > I'm trying to use the CRYPTO_mem_leaks  API in openssl 1.1.1d, but
> > > during compilation I'm getting error as
> > > *Unsatisfied symbol "CRYPTO_mem_leaks" *
> > >
> > > I have Included the header
> > > #include 
> > >
> > > one doubt is it is defined under crypto.h
> > > #ifndef OPENSSL_NO_CRYPTO_MDEBUG
> > > CRYPTO_mem_leaks //  defined
> > > #endif
> > >
> > > in opensslconf.h is defined as
> > > #ifndef OPENSSL_NO_CRYPTO_MDEBUG
> > > #define OPENSSL_NO_CRYPTO_MDEBUG
> > > #endif
> > >
> > > How to resolve the issue?
> >
> > The CRYPTO_mem_leaks API is not available by default. You have to
> > compile a version of OpenSSL that has it enabled using the
> > "enable-crypto-mdebug" option to "Configure":
> >
> >
> https://github.com/openssl/openssl/blob/6e933b35492a4dc3370b9f49890646dadca82cd8/INSTALL#L327-L329
> >
> > Matt
> >
> > --
> > *With Best Regards*
> > *Shivakumar S*
>
-- 
*With Best Regards*
*Shivakumar S*


Re: CRYPTO_mem_leaks Error in openssl 1.1.1d

2020-11-10 Thread shiva kumar
Any alternatives for this, if the compiled version doesn't enabled the flag?

On Tue, 10 Nov 2020 at 4:52 PM, Matt Caswell  wrote:

>
>
> On 10/11/2020 09:19, shiva kumar wrote:
> > Hi,
> > I'm trying to use the CRYPTO_mem_leaks  API in openssl 1.1.1d, but
> > during compilation I'm getting error as
> > *Unsatisfied symbol "CRYPTO_mem_leaks" *
> >
> > I have Included the header
> > #include 
> >
> > one doubt is it is defined under crypto.h
> > #ifndef OPENSSL_NO_CRYPTO_MDEBUG
> > CRYPTO_mem_leaks //  defined
> > #endif
> >
> > in opensslconf.h is defined as
> > #ifndef OPENSSL_NO_CRYPTO_MDEBUG
> > #define OPENSSL_NO_CRYPTO_MDEBUG
> > #endif
> >
> > How to resolve the issue?
>
> The CRYPTO_mem_leaks API is not available by default. You have to
> compile a version of OpenSSL that has it enabled using the
> "enable-crypto-mdebug" option to "Configure":
>
>
> https://github.com/openssl/openssl/blob/6e933b35492a4dc3370b9f49890646dadca82cd8/INSTALL#L327-L329
>
> Matt
>
> --
*With Best Regards*
*Shivakumar S*


CRYPTO_mem_leaks Error in openssl 1.1.1d

2020-11-10 Thread shiva kumar
Hi,
I'm trying to use the CRYPTO_mem_leaks  API in openssl 1.1.1d, but during
compilation I'm getting error as
*Unsatisfied symbol "CRYPTO_mem_leaks" *

I have Included the header
#include 

one doubt is it is defined under crypto.h
#ifndef OPENSSL_NO_CRYPTO_MDEBUG
CRYPTO_mem_leaks //  defined
#endif

in opensslconf.h is defined as
#ifndef OPENSSL_NO_CRYPTO_MDEBUG
#define OPENSSL_NO_CRYPTO_MDEBUG
#endif

How to resolve the issue?
please help me

Regards
Shivakumar


alternative for x509 "name" field

2020-10-23 Thread shiva kumar
Hi,

Compared to OpenSSL 1.0.2 and 1.1.0 and above, in  struct x509_st , char
*name field has been removed, what is the alternative for it and what is
the impact? can anyone please answer the query?

Thanks and regards
Shivakumar


x509_store_ctx_st structure in openssl 1.1.1

2020-06-22 Thread shiva kumar
Hi,
I was using the structure
struct x509_store_ctx_st
provide by x509_vfy.h in openssl 1.0.2, but can you please help me on how
to use the same or alternative for the above structure on openssl 1.1.1


Thanks and regards
Shivakumar


Re: certificate verification error OpenSSL 1.1.1

2020-03-02 Thread shiva kumar
Hi,
can you please tell me more about
1) How to verify a self signed (.crt) key in OpenSSL 1.1.1?
2) Is key generated by OpenSSL 1.0.2 can be used to connect with OpenSSL
1.1.1 and vice versa?

Thanks and regards
Shivakumar

On Mon, Mar 2, 2020 at 2:36 PM Dmitry Belyavsky  wrote:

> First, I recommend you not to hurry up :)
>
> Second, the validation procedures have changed between 1.0.2 and 1.1.1,
> 1.1.1 checks more strictly.
> E.g., a self-signed certificate without "CA:TRUE" will be treated as valid
> CA cert in 1.0.2 but not valid in 1.1.1
>
>
>
> On Mon, Mar 2, 2020 at 12:01 PM shiva kumar 
> wrote:
>
>> Hi,
>> Please help me, is this an expected behavior?
>>
>> On Mon, Mar 2, 2020 at 1:48 PM shiva kumar 
>> wrote:
>>
>>> when I tried to verify the the self signed certificate in OpenSSL 1.0.2
>>> it is giving error 18 and gives OK as o/p, when I tried the same with
>>> OpenSSL 1.1.1 there is slight change in the behavior it also gives the
>>> same error, but instead of OK it gives different error as "*ca.crt:
>>> verification failed*"  as follows.
>>>
>>>
>>>
>>> *in OpenSSL 1.0.2*
>>>
>>> openssl verify ./ca.crt
>>>
>>> *error 18* at 0 depth lookup:self signed certificate
>>>
>>> *OK*
>>>
>>>
>>> *in OpenSSL 1.1.1 *
>>>
>>> openssl verify ./ca.crt
>>>
>>> *error 18* at 0 depth lookup:self signed certificate
>>>
>>> *error /tmp/1.1/conf/ssl.crt/ca.crt: verification failed*
>>>
>>> # echo $?
>>>
>>> 2
>>>
>>>
>>> why I'm getting this error? is this an expected behavior in OpenSSL
>>> 1.1.1?
>>>
>>> Please answer my question.
>>>
>>>
>>>
>>>
>>> --
>>> *With Best Regards*
>>> *Shivakumar S*
>>>
>>
>>
>> --
>> *With Best Regards*
>> *Shivakumar S*
>>
>
>
> --
> SY, Dmitry Belyavsky
>


-- 
*With Best Regards*
*Shivakumar S*


Re: certificate verification error OpenSSL 1.1.1

2020-03-02 Thread shiva kumar
Hi,
Please help me, is this an expected behavior?

On Mon, Mar 2, 2020 at 1:48 PM shiva kumar  wrote:

> when I tried to verify the the self signed certificate in OpenSSL 1.0.2 it
> is giving error 18 and gives OK as o/p, when I tried the same with OpenSSL
> 1.1.1 there is slight change in the behavior it also gives the same error,
> but instead of OK it gives different error as "*ca.crt: verification
> failed*"  as follows.
>
>
>
> *in OpenSSL 1.0.2*
>
> openssl verify ./ca.crt
>
> *error 18* at 0 depth lookup:self signed certificate
>
> *OK*
>
>
> *in OpenSSL 1.1.1 *
>
> openssl verify ./ca.crt
>
> *error 18* at 0 depth lookup:self signed certificate
>
> *error /tmp/1.1/conf/ssl.crt/ca.crt: verification failed*
>
> # echo $?
>
> 2
>
>
> why I'm getting this error? is this an expected behavior in OpenSSL 1.1.1?
>
> Please answer my question.
>
>
>
>
> --
> *With Best Regards*
> *Shivakumar S*
>


-- 
*With Best Regards*
*Shivakumar S*


certificate verification error OpenSSL 1.1.1

2020-03-02 Thread shiva kumar
when I tried to verify the the self signed certificate in OpenSSL 1.0.2 it
is giving error 18 and gives OK as o/p, when I tried the same with OpenSSL
1.1.1 there is slight change in the behavior it also gives the same error,
but instead of OK it gives different error as "*ca.crt: verification failed*"
as follows.



*in OpenSSL 1.0.2*

openssl verify ./ca.crt

*error 18* at 0 depth lookup:self signed certificate

*OK*


*in OpenSSL 1.1.1 *

openssl verify ./ca.crt

*error 18* at 0 depth lookup:self signed certificate

*error /tmp/1.1/conf/ssl.crt/ca.crt: verification failed*

# echo $?

2


why I'm getting this error? is this an expected behavior in OpenSSL 1.1.1?

Please answer my question.




-- 
*With Best Regards*
*Shivakumar S*


TLS version

2020-02-27 Thread shiva kumar
Hi,
can anyone please tell, how to check the list of tls versions supported in
openssl build ( version 1.1.1)?

-- 
*With Best Regards*
*Shivakumar S*


Re: OpenSSL 1.0.2 EOL

2019-11-27 Thread shiva kumar
but still the update is going on in the GitHub repository for 102 branch,
is that mean there will be a release by end of this year?

On Tue, Nov 26, 2019 at 6:31 PM Matt Caswell  wrote:

>
>
> On 26/11/2019 11:38, shiva kumar wrote:
> > Hi,
> > As we know that OpenSSL 1.0.2 support will end in 31st  December 2019.
> > and the latest version is 1.0.2t, is there will be any release by EOL?
> > can we expect a release before EOL?
>
> This is as yet undecided. We issue releases on an as-needed basis and so
> far we have not needed another release. That might change before the end
> of the year.
>
> Matt
>
>

-- 
*With Best Regards*
*Shivakumar S*


OpenSSL 1.0.2 EOL

2019-11-26 Thread shiva kumar
Hi,
As we know that OpenSSL 1.0.2 support will end in 31st  December 2019.
and the latest version is 1.0.2t, is there will be any release by EOL?
can we expect a release before EOL?

Regards
Shivakumar


Re: dsaparam error OpenSSL 1.1.1d

2019-11-10 Thread shiva kumar
Hi,
can anyone please help me to solve this issue?
*openssl dsaparam 128 -rand file *
is taking long time processing the command and not producing any output.


On Sun, Nov 10, 2019 at 8:17 PM shiva kumar 
wrote:

> Hi,
> I'm using OpenSSL 1.1.1d, when I tried executing the dsaparam command in
> command line as shown below it takes long time and I won't get output, it
> just keeps on processing. Is this an error? what is causing the problem?
>
> *openssl dsaparam 128 -rand file*
>
> *openssl dsaparam  -rand file*
>
>
> --
> *With Best Regards*
> *Shivakumar S*
>


-- 
*With Best Regards*
*Shivakumar S*


dsaparam error OpenSSL 1.1.1d

2019-11-10 Thread shiva kumar
Hi,
I'm using OpenSSL 1.1.1d, when I tried executing the dsaparam command in
command line as shown below it takes long time and I won't get output, it
just keeps on processing. Is this an error? what is causing the problem?

*openssl dsaparam 128 -rand file*

*openssl dsaparam  -rand file*


-- 
*With Best Regards*
*Shivakumar S*


use of makedepend in openssl 1.1.1

2019-10-24 Thread shiva kumar
what is the use of makedepend in openssl 1.1.1?
openssl 1.1.1 can build without makepend then what's the use of makedepend?
is it good to use makedepend while building openssl 1.1.1?
please answer me
thanks in advance

-- 
*With Best Regards*
*Shivakumar S*


OPENSSL IS NOT GENERATING RESPONSE

2019-10-03 Thread shiva kumar
HI,
when I run the following command the response is not generated
*util/shlib_wrap.sh apps/openssl  ts -config test/CAtsa.cnf -reply -section
tsa_config1 -queryfile req1.tsq  -out resp1.tsr*

output
>>Using configuration from test/CAtsa.cnf
>>Response is not generated.

though I have run and generated the file request file req1.tsq
can anyone let me know why I'm getting this error?


-- 
*With Best Regards*
*Shivakumar S*


Error while running shlibload. test case

2019-09-25 Thread shiva kumar
Hi,
I'm getting error while running test case  "90-test_shlibload.t" in openssl
1.1.1c make test.

../test/recipes/90-test_shlibload.t (Wstat: 1024 Tests: 10 Failed: 4)
  Failed tests:  2, 4, 6, 8

 in file  test/recipes/90-test_shlibload.t
*ok(check_atexit($fh));*

when i checked it is the above function call, which is throwing error.
can anyone please tell me why is this happening?

Regards
Shivakumar


Re: looks like the support for Heart beat extension is removed from openssl

2019-07-14 Thread shiva kumar
Hi,

If someone can have a look at my query and provide suggestions(which would
be much helpful for me).
Thanks for your help

Thanks!
Shiva

On Fri, Jul 12, 2019 at 5:13 PM Salz, Rich  wrote:

>
>- would the below method be advisable to handle the "failure to close"
>conditions
>
>
>
> Sorry, no comment.  Maybe others will.
>


Re: How to list ssl3 ciphers

2019-07-11 Thread shiva kumar
HI,
In OpenSSL 1.1.1 documentation it is mentioned as -ssl3 option is there as
follows,
*openssl* *ciphers* [*-help*] [*-s*] [*-v*] [*-V*] [*-ssl3*] [*-tls1*] [
*-tls1_1*] [*-tls1_2*] [*-tls1_3*] [*-s*] [*-psk*] [*-srp*]
[*-stdname*] [*-convert
name*] [*-ciphersuites val*] [*cipherlist*]

but, in the command line when I list the options with help command, it is
not showing ssl3 option as follows
















*$openssl ciphers -helpUsage: ciphers [options]Valid options are: -help
 Display this summary -v Verbose listing of the
SSL/TLS ciphers -V Even more verbose -s
Only supported ciphers -tls1  TLS1 mode -tls1_1
 TLS1.1 mode -tls1_2TLS1.2 mode -tls1_3TLS1.3
mode -stdname   Show standard cipher names -psk
include ciphersuites requiring PSK -srp   include ciphersuites
requiring SRP -convert val   Convert standard name into OpenSSL
name -ciphersuites val  Configure the TLSv1.3 ciphersuites to use*

why it is not displaying the ssl3 option? please answer me.

Thanks and Regards
Shivakumar


On Wed, Jul 10, 2019 at 10:40 AM shiva kumar 
wrote:

> Hi,
> How to List the ssl3 ciphers in openssl1.1.1
> The command "openssl ciphers -ssl3" is not working. Please help me
>
> Thanks and Regards
> Shivakumar
> --
> *With Best Regards*
> *Shivakumar S*
>


looks like the support for Heart beat extension is removed from openssl

2019-07-11 Thread shiva kumar
Hi ,

Why the support for Heart beat extension is removed from openssl.
I am referring latest version of openssl(openssl-1.1.1c)

How to handle abnormal disconnection in DTLS?

Thanks!
Shiva


RFC 6347 : 4.2.8. Establishing New Associations with Existing Parameters

2019-07-09 Thread shiva kumar
Hi,

Does openSSL implement the section "4.2.8. Establishing New Associations
with Existing Parameters" in RFC 6347

I tried to test the feature with "openssl-1.1.1c" but couldn't simulate the
same.

Some details about my sample test:

Client:

1. Initiate a connection request for DTLS 1.2(target on a particular
IP/port)
2. Then close the DTLS connection(abruptly and not sending SSL shutdown
message)
3. Try to initiate a second connection request to same target on the same
initial IP/port

Server:

1. Accept the DTLS connection request (cookie exchange mechanism enabled)
2. Then call SSL_read to read the application data over DTLS
3. But it will get a connection request from client side(Basically client
hello)

Observation:

1. The client hangs in second handshake just retransmitting client hellos
2. The server just hangs in SSL_read(probably dropping the client hello
messages)

Thanks in advance for the help!


How to list ssl3 ciphers

2019-07-09 Thread shiva kumar
Hi,
How to List the ssl3 ciphers in openssl1.1.1
The command "openssl ciphers -ssl3" is not working. Please help me

Thanks and Regards
Shivakumar
-- 
*With Best Regards*
*Shivakumar S*


Make test error in OpenSSL 1.1.1b

2019-06-19 Thread shiva kumar
Hi,
In the OpenSSL 1.1.1b build after make test I'm getting error as follows













*../test/recipes/70-test_comp.t   (Wstat: 35584 Tests: 0
Failed: 0)  Non-zero exit status: 139  Parse errors: No plan found in TAP
output../test/recipes/70-test_key_share.t  (Wstat: 35584 Tests:
0 Failed: 0)  Non-zero exit status: 139  Parse errors: No plan found in TAP
output../test/recipes/70-test_renegotiation.t  (Wstat: 35584 Tests:
0 Failed: 0)  Non-zero exit status: 139  Parse errors: No plan found in TAP
output../test/recipes/70-test_sslcbcpadding.t  (Wstat: 35584 Tests:
4 Failed: 0)  Non-zero exit status: 139  Parse errors: Bad plan.  You
planned 5 tests but ran 4.../test/recipes/70-test_sslcertstatus.t
 (Wstat: 35584 Tests: 0 Failed: 0)  Non-zero exit status: 139*

can anyone please let me know why I'm getting this error ? what might have
caused this?.

Regards
Shiv


Information on Build.info

2019-06-18 Thread shiva kumar
Hi,
Actually I wanted to know how build.info file in each directory such as
apps, engines etc, will used generate the Make file, what would happen If I
wanted to change the build.info file

1) in openssl/*apps/build.info *
what would happen if I change
*DEPEND[openssl]=libapps.a ../libssl*
to
*DEPEND[openssl]=libapps.a ../libssl.a*

2)in openssl/*engines/build.info *
what would hapen if I change
*  LIBS=../libcrypto*
  to
*  LIBS=../libcrypto.a*

*  DEPEND[padlock]=../libcrypto*
  to
  *DEPEND[padlock]=../libcrypto*

  *DEPEND[capi]=../libcrypto*
  to
  *DEPEND[capi]=../libcrypto.a*

  *DEPEND[afalg]=../libcrypto*
  to
  *DEPEND[afalg]=../libcrypto*

  * DEPEND[dasync]=../libcrypto*
   to
*DEPEND[dasync]=../libcrypto*

*DEPEND[ossltest]=../libcrypt*
   to
*DEPEND[ossltest]=../libcrypt*

3) in *openssl/build.file*
what would happen if I change
*DEPEND[libssl]=libcrypto*
to
   * DEPEND[libssl]=libcrypto.a*

please let me know

Thanks and Regards
Shivakumar


Re: Make file removed in openssl 1.1.1

2019-06-17 Thread shiva kumar
Actually I wanted to change the library dependencies from shared to archive
libraries as follows
*SHLIBDEPS='libcrypto.a'*  In Makefile which I was doing in 1.0.2 version,
How can I do this? in 1.1.1 version.


Make file removed in openssl 1.1.1

2019-06-17 Thread shiva kumar
Hi,
In the OpenSSL 1.1.1 Make file is generated on top directory after when
config is executed.
 In OpenSSL 1.0.2 there is Make file at each directory and is hierarchical,
but this is not the same in 1.1.1 version.
Actually I was modifying the Makefile configurations manually in apps and
engines directory and also changing Makefile.org on top directory for my
build, now I'm not able to do that in OpenSSL 1.1.1b since, make file has
been removed in 1.1.1

can anyone please let me know how can I actually perform those changes in
the make file in OpenSSL 1.1.1b

Thanks and Regards
Shiv


Dyanmic engine for OpenSSL 1.1.1b

2019-06-04 Thread shiva kumar
Hi,
when I am performing make test while building OpenSSL 1.1.1b I got error as
:

../test/recipes/70-test_sslcbcpadding.t  skipped:
test_sslcbcpadding needs the dynamic engine feature enabled
../test/recipes/70-test_sslcertstatus.t  skipped:
test_sslcertstatus needs the dynamic engine feature enabled
../test/recipes/70-test_sslextension.t . skipped:
test_sslextension needs the dynamic engine feature enabled
../test/recipes/70-test_sslmessages.t .. skipped:
test_sslmessages needs the dynamic engine feature enabled
../test/recipes/70-test_sslrecords.t ... skipped:
test_sslrecords needs the dynamic engine feature enabled
../test/recipes/70-test_sslsessiontick.t ... skipped:
test_sslsessiontick needs the dynamic engine feature enabled

what is meant by enabling dynamic engine feature ?
can anyone please explain me ?

I also got as
../test/recipes/90-test_shlibload.t  skipped: Test only
supported in a shared build

is they any problem if I create a n*o-shared* build ?
how is the linking works in *no-shared*  build  comapred to shared build ?
please explain me.

Thanks and Regards
Shivakumar


MAKE file not found in openssl 1.1.1b

2019-05-27 Thread shiva kumar
Hi,
In the openssl 1.1.1b make files are missing when compared with the 1.0.2r
openssl-1.1.1b/Makefile.org (not present)
openssl-1.1.1b/apps/Makefile (not present)
openssl-1.1.1b/engines/Makefile (not present)
and may more are not present.

How can I modify the make file options, in the above mentioned make files
in 1.1.1b, which i was doing in 1.0.2r ?
please help me

Thanks and Regards
Shiv.


Re: error while running openssl 1.1.1b config file

2019-05-21 Thread shiva kumar
Ok, thanks.

On Tue, May 21, 2019 at 2:15 PM Matt Caswell  wrote:

>
>
> On 21/05/2019 09:44, shiva kumar wrote:
> > is Kerberos v5 is completely removed or depreciated from  OpenSSL  1.1.0
> onwards  ?
>
> It was completely removed.
>
> Matt
>
>

-- 
*With Best Regards*
*Shivakumar S*
*Mysore, Karnataka*
*# 91-9945543956*


Re: error while running openssl 1.1.1b config file

2019-05-21 Thread shiva kumar
is Kerberos v5 is completely removed or depreciated from  OpenSSL  1.1.0
onwards  ?

On Tue, May 21, 2019 at 2:04 PM Matt Caswell  wrote:

>
>
> On 21/05/2019 09:28, shiva kumar wrote:
> > Hi,
> > when running openssl 1.1.1b config file with no-krb5 option
> > I got as,
> >
> > * Unsupported options: no-krb5
> >
> > can I know why I'am getting this error?
> > when i remove the no-krb5 option it works.
> > This option was working on openssl 1.0.2r, but why this option is not
> working
> > here ? can I know ?
>
> There is no krb5 support at all in 1.1.0+ so the option has gone. You
> don't need
> it so just remove it.
>
> Matt
>
>

-- 
*With Best Regards*
*Shivakumar S*
*Mysore, Karnataka*
*# 91-9945543956*


error while running openssl 1.1.1b config file

2019-05-21 Thread shiva kumar
Hi,
when running openssl 1.1.1b config file with no-krb5 option
I got as,

* Unsupported options: no-krb5

can I know why I'am getting this error?
when i remove the no-krb5 option it works.
This option was working on openssl 1.0.2r, but why this option is not
working here ? can I know ?

Thanks and Regards
Shivakumar S


FIPS module for OpenSSL 1.1.1x

2019-05-16 Thread shiva kumar
Hi,
I wanted to move from OpenSSL 1.0.2r to 1.1.1b. I have some doubts they are

1) If I upgrade to 1.1.1b will it cause any problem to other applications?
which uses openssl for communications. ( say apache http server ).

2) can I expect FIPS module for 1.1.1b as well ?

3) since OpenSSL 1.1.1b doesn't have FIPS will this affect any other
application ?



Thanks and regards
Shivakumar S


ecparam error on openssl 102r

2019-03-20 Thread shiva kumar
Hi,
When I run openssl ecparam on elliptic curve Oakley-EC2N-3,
Oakley-EC2N-4 on openssl 1.0.2r version,
I am getting the following error, can anyone please help me why i am
getting this error.

# openssl ecparam -out Oakley-EC2N-3_102r.pem -name Oakley-EC2N-3
unable to write elliptic curve parameters
2063867464:error:100BF079:elliptic curve routines:i2d_ECPKParameters:i2d
ecpkparameters failure:ec_asn1.c:1011:
2063867464:error:100BF079:elliptic curve routines:i2d_ECPKParameters:i2d
ecpkparameters failure:ec_asn1.c:1011:

unable to write elliptic curve parameters
2063867464:error:100BF079:elliptic curve routines:i2d_ECPKParameters:i2d
ecpkparameters failure:ec_asn1.c:1011:
2063867464:error:100BF079:elliptic curve routines:i2d_ECPKParameters:i2d
ecpkparameters failure:ec_asn1.c:1011:

Thanks and Regards
shivakumar


[openssl-users] Request for the list of API changes from 1.0.2k to 1.1.1a

2019-01-06 Thread shiva kumar
Hi,

I'm using OpenSSL 1.0.2k, I wated to move to 1.1.1a so I'm building the
1.1.1a
I wanted to know list of all the API that are changed from 1.0.2k to
1.1.1a, so I request  you to provide all the list of API

Thanks and Regards
Shivakumar

-- 
*With Best Regards*
*Shivakumar S*
*Mysore, Karnataka*
*# 91-9945543956*
-- 
openssl-users mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-users