RE:

2021-01-29 Thread Narayana, Sunil Kumar
ants as you suggested Regards, Sunil From: Thulasi Goriparthi Sent: 29 January 2021 17:24 To: Narayana, Sunil Kumar Cc: openssl-users@openssl.org Subject: Re: NOTICE: This email was received from an EXTERNAL sender Isn't i

RE:

2021-01-29 Thread Narayana, Sunil Kumar
. Regards, Sunil From: Thulasi Goriparthi Sent: 29 January 2021 13:07 To: Narayana, Sunil Kumar Cc: openssl-users@openssl.org Subject: Re: NOTICE: This email was received from an EXTERNAL sender Hope, you are referring to https

openssl-users@openssl.org

2021-01-28 Thread Narayana, Sunil Kumar
Dear Openssl team, While migrating from 1.0.2 to 3.0 we observe that RSA_public_decrypt() API been deprecated in 3.0. We referred the example provided in man page but we are not clear in generating the initial ‘key’ required to create CTX. Please suggest on (key , eng) params to

openssl-users@openssl.org

2021-01-27 Thread Narayana, Sunil Kumar
Dear Openssl team, While migrating from 1.0.2 to 3.0 we observe that RSA_public_decrypt() API been deprecated in 3.0. We referred the example provided in man page but we are not clear in generating the initial 'key' required to create CTX. Please suggest on (key , eng) params to p

Using AES utilities in 3.0

2020-12-29 Thread Narayana, Sunil Kumar
Dear Openssl team, While migrating from 1.0.2 to 3.0 we observe that AES utility functions are deprecated in 3.0. Please suggest the equivalent replacements for these API that are been currently used by our application AES_KEY --->Structure declaration is also not visible to

openssl-users@openssl.org

2020-12-21 Thread Narayana, Sunil Kumar
Dear Openssl team, While migrating from 1.0.2 to 3.0 we are stuck in replacing DH_compute_key() with its equivalent EVP_PKEY_derive() The input we have is of type (BIGNUM *bn_peer_publicKey / bn_privateKey). But the example showed in the man page EVP_PKEY_derive_init ... require

RE: DH_compute_key () - replacement in 3.0

2020-12-17 Thread Narayana, Sunil Kumar
gctx, sharedSecret, &skeylen) } Note - EVP_PKEY_derive -- call fails what is wrong in the steps can you please g From: Sands, Daniel Sent: 16 December 2020 05:00 To: Narayana, Sunil Kumar ; openssl-users@openssl.org Subject: RE: [EXTERNAL] RE: DH_compute_key (

RE: [EXTERNAL] RE: DH_compute_key () - replacement in 3.0

2020-12-16 Thread Narayana, Sunil Kumar
, &dhq, &dhg); BN_print_fp(dhfp, dh_pubkey);.. etc Note : post fetching DH from pkey, the input params (P,G) are matching properly. But pub/priv keys are not matching with the DH_generate_key output. Please suggest. Regards, Sunil From: Sands, Daniel Sent: 16 December 2020 05:00 To: Narayan

RE: DH_compute_key () - replacement in 3.0

2020-12-15 Thread Narayana, Sunil Kumar
nt: 15 December 2020 05:16 To: Narayana, Sunil Kumar ; openssl-users@openssl.org Subject: RE: DH_compute_key () - replacement in 3.0 NOTICE: This email was received from an EXTERNAL sender to exactly replace this we are gene

DH_compute_key () - replacement in 3.0

2020-12-14 Thread Narayana, Sunil Kumar
Hi , While migrating from 1.0.2 to 3.0, we found that DH_compute_key () has be deprecated. In the current we are using the compute API as below dh->priv_key = BN_bin2bn(privateKey, octet_len, NULL); bn_publicKey = BN_bin2bn(publicKey, octet_len, NULL); rv = DH_compute_key(sharedSecre

Re: DH_generate_key

2020-12-10 Thread Narayana, Sunil Kumar
-- Message: 1 Date: Wed, 9 Dec 2020 15:31:51 + From: Matt Caswell mailto:m...@openssl.org>> To: "Narayana, Sunil Kumar" mailto:sanaray...@rbbn.com>>, "openssl-users@openssl.org<mailto:openssl-users@openssl.org>" mailto:openssl-use

RE: DH_generate_key (Sands, Daniel)

2020-12-09 Thread Narayana, Sunil Kumar
to decrypt TLS session from PCAP files (Matt Caswell) 2. Re: Use OpenSSL to decrypt TLS session from PCAP files (John Baldwin) 3. DH_generate_key (Narayana, Sunil Kumar) 4. RE: DH_generate_key (Sands, Daniel) -- Message: 1 Date:

DH_generate_key

2020-12-08 Thread Narayana, Sunil Kumar
Dear openssl team, While migrating from 1.0.2 to 3.0, we found that DH_generate_key() has be deprecated. And as per the man page, it is advised to use EVP_PKEY_derive_init & EVP_PKEY_derive

Regarding #def for 'SSL_R_PEER_ERROR_NO_CIPHER' and 'SSL_R_NO_CERTIFICATE_RETURNED' in openssl3.0

2020-12-04 Thread Narayana, Sunil Kumar
Hi, We are trying to upgrade our application from openssl usage of 1.0.2 to openssl 3.0, during which we observe following errors. Looks like the below #def been removed from 1.1 onwards, Should application also need to take off from its usage ? or is there any alternative to be u

Regarding #def for 'SSL_R_PEER_ERROR_NO_CIPHER' and 'SSL_R_NO_CERTIFICATE_RETURNED' in openssl3.0

2020-11-27 Thread Narayana, Sunil Kumar
Hi, We are trying to upgrade our application from openssl usage of 1.0.2 to openssl 3.0, during which we observe following errors. Looks like the below #def been removed from 1.1 onwards, Should application also need to take off from its usage ? or is there any alternative to be u

HMAC is deprecated in 3.0 getting error 'HMAC' was not declared in this scope

2020-11-26 Thread Narayana, Sunil Kumar
Hi, We are trying to upgrade our application from openssl usage of 1.0.2 to openssl 3.0, during which we observe following errors. Need help to identify the alternatives. Error1 : error: 'HMAC' was not declared in this scope HMAC(EVP_sha1(), (const void*) cookie_secret, COOKIE_S

RE: set/get utilities are not available to access variable 'num' of structure bio_st (Matt Caswell)

2020-11-24 Thread Narayana, Sunil Kumar
Hi Matt, Thanks for the reply.. we would implement as you suggested. From: Matt Caswell Sent: 23 November 2020 17:12 To: Narayana, Sunil Kumar ; openssl-users@openssl.org Subject: Re: set/get utilities are not available to access variable 'num' of structure bio_st (Ma

Re: set/get utilities are not available to access variable 'num' of structure bio_st (Matt Caswell)

2020-11-23 Thread Narayana, Sunil Kumar
ssl.org<mailto:openssl-users-ow...@openssl.org> When replying, please edit your Subject line so it is more specific than "Re: Contents of openssl-users digest..." Today's Topics: 1. set/get utilities are not available to access variable 'num' of structure bio_

set/get utilities are not available to access variable 'num' of structure bio_st

2020-11-20 Thread Narayana, Sunil Kumar
Hi , We are porting our Application from openssl 1.0.1 to openssl 3.0. In related to this activity we require to access the variable 'num' of structure bio_st. In older versions the variable was accessed to set and get value using pointer operator (bi->num ). Since this is not a

RE: Application accessing 'ex_kusage'

2020-11-19 Thread Narayana, Sunil Kumar
16:24 + From: Matt Caswell mailto:m...@openssl.org>> To: openssl-users@openssl.org<mailto:openssl-users@openssl.org> Subject: Re: ## Application accessing 'ex_kusage' ## Message-ID: mailto:b854f116-568a-d795-9186-098a6d8f4...@openssl.org>> Content-Ty

## Application accessing 'ex_kusage' ##

2020-11-13 Thread Narayana, Sunil Kumar
Hi , We are porting our Application from openssl 1.0.1 to openssl 3.0. in related to this activity we require to access the variable 'ex_kusage' pointed by X509 But there are no set utilities available to access this variable. Only X509_get_key_usage Is available. Our code for

REMOVE

2002-03-01 Thread narayana
REMOVE         narayana

REMOVE

2002-02-27 Thread narayana
REMOVE   *** narayana

When Openssl 0.9.7 will be available?

2001-11-26 Thread narayana
Hello All,   I'd like to know when Openssl Users will have AES ? The change log in Openssl website says that AES/Rijndael related changes are incorporated in 0.9.7 only. But 0.9.7 version isn't availabe for download, the 0.9.6b version doesn't seem to have AES/Rijndael support. Can anybody