Re: Fwd: Trying to generate a RSA private key

2022-02-15 Thread Mark Hack
Use keytool -list -v to ensure that the original store actually contains a private key If there is no entry of Entry type: PrivateKeyEntry then the store has no private key Mark Hack On Tue, 2022-02-15 at 18:30 +0100, mary mary wrote:Hello community, > A beginner here. > > I would need to

Fwd: Trying to generate a RSA private key

2022-02-15 Thread mary mary
Hello community, A beginner here. I would need to extract a private key, PEM or RSA format, from a keystore file ("server.keystore") which I have. I've executed: keytool -importkeystore -srcstorepass 123456 -srckeystore server.keystore -deststorepass 123456 -destkeystore server.p12

Re: [EXTERNAL] Re: need some help with the block size value

2022-02-15 Thread Srinivas, Saketh (c)
i am using openssl 3.0 From: openssl-users on behalf of Matt Caswell Sent: Tuesday, February 15, 2022 6:45 PM To: openssl-users@openssl.org Subject: [EXTERNAL] Re: need some help with the block size value On 15/02/2022 12:13, Srinivas, Saketh (c) wrote: >

Re: OpenSSL 3.0 FIPS module configuration file

2022-02-15 Thread Tomas Mraz
Please note that there are two checksums in the configuration file. One of them is the FIPS module checksum and the other is the checksum of the configuration. You can copy the file across machines if it is without the configuration checksum - that means the selftest will be always run when the

Re: need some help with the block size value

2022-02-15 Thread Matt Caswell
On 15/02/2022 12:13, Srinivas, Saketh (c) wrote: Hi, i am trying to get the block size of EVP_des_ede3_cbc cipher using the below function but it's not returning anything. EVP_CIPHER_get_block_size(EVP_des_ede3_cbc()) This code looks fine to me, and I just tested this and it returned

need some help with the block size value

2022-02-15 Thread Srinivas, Saketh (c)
Hi, i am trying to get the block size of EVP_des_ede3_cbc cipher using the below function but it's not returning anything. EVP_CIPHER_get_block_size(EVP_des_ede3_cbc()) Does anyone have any idea how to. thanks, Saketh. Notice: This e-mail together with any attachments may contain information

Re: [EXTERNAL] Re: Not able to perform FIPS self-tests

2022-02-15 Thread Dr Paul Dale
Shane Lontis suggested this: /Don't return 0 during the Corruption phase unless you are trying to deliberately make it fail./ // /OSSL_PROVIDER_self_test() can be used to run the self tests on demand./ // Dr Paul Dale On 11/2/22 17:23, Gahlot, Ashish Kumar wrote: Hi, Thanks