Skip to main content

Questions tagged [openssl]

OpenSSL is an open-source implementation of the SSL and TLS protocols. The core library, written in the C programming language, implements the basic cryptographic functions and provides various utility functions.

Filter by
Sorted by
Tagged with
0 votes
0 answers
49 views

I run dovecot and Postfix and lets encrypt. When I ssh into my postfix and run openssl for check mail such as: openssl s_client -crlf -connect mail.pahlevanzadeh.org:995 CONNECTED(00000003) depth=2 ...
PersianGulf's user avatar
  • 11.3k
0 votes
1 answer
222 views

I'm trying to create an SSL certificate using the following command on Rocky Linux: sudo openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout /etc/pki/tls/private/shaserver.bungkus.org.key -out ...
Hanister Leee i dunno nickname's user avatar
0 votes
1 answer
638 views

I generate private encrypted RSA key: openssl genpkey -algorithm RSA -pkeyopt rsa_keygen_bits:2048 -out key_enc_private.pem -aes256 Then I extract public RSA key: openssl rsa -pubout -in ...
user3299199's user avatar
1 vote
1 answer
108 views

In openssl 3.0.7 I can see this in openssl-ca manpage: -extensions section The section of the configuration file containing certificate extensions to be added when a certificate is ...
eftshift0's user avatar
  • 785
0 votes
5 answers
190 views

I am having an output similar to the file (filename whatever.com) below... [...]~ # tmsh list sys file ssl-cert whatever.com_2024 sys file ssl-cert whatever.com_2024 { certificate-key-size 2048 ...
peti27's user avatar
  • 69
0 votes
0 answers
79 views

I'm running a site on Apache (httpd) on a CentOS 7 host and monitoring it using Nagios on another CentOS 7 host. The configuration in Nagios is: define service { check_command ...
Confounder's user avatar
0 votes
1 answer
138 views

Trying to create RSA key via openssl: openssl genpkey -algorithm RSA -cipher des3 -outform PEM -pkeyopt rsa_keygen_bits:2048 -out myCA.pem This output: genpkey: Use -help for summary. If I remove -...
Eric's user avatar
  • 443
4 votes
2 answers
2k views

In the folder /etc/ssl/certs/ i can well see: Symbolic links to the certificates stored at /usr/share/ca-certificates/ The BUNDLE file ca-certificates.crt which contains all certificates in PEM ...
floupinette's user avatar
0 votes
0 answers
144 views

I am working on an embedded Linux system (kernel-5.18.18) for an SOC platform. The system has openssl compiled, and there is an application connecting to cloud server. But the application failed to ...
wangt13's user avatar
  • 651
0 votes
0 answers
443 views

After several sessions with intense Google searching and trying several angles with ChatGPT, I seem to be at a dead-end, my problem arises when I try to build OpenSSL from source, it seems that the ...
user1359448's user avatar
3 votes
1 answer
3k views

I'm trying to generate a CSR (certificate signing request) with: openssl req -new -config server.cnf -key server.key -out server.csr Error: No objects specified in config file Error making certificate ...
RubenLaguna's user avatar
0 votes
0 answers
165 views

I am trying to build OpenDKIM from source. For some reason, the build is not supporting SHA-256, even when the OpenSSL version I am building with uses SHA-256. How is this possible ? I run: ./...
user10709800's user avatar
0 votes
1 answer
786 views

I posted here earlier today regarding my certificate issue. This is the last one I have. I have setup a new self-signed certificate chain with setup below by following this guide https://dev.to/berk/...
arizona525's user avatar
2 votes
1 answer
166 views

I have a variable foo_var which contains ASCII text (base64 text, with some additional text which includes dashes, spaces, and underscores). I write this var to a file as follows: cat <<<&...
QF0's user avatar
  • 391
0 votes
0 answers
119 views

I have recently obtained an S/MIME certificate from a CA to use with Thunderbird on a Linux system. I used the following command in CLI : openssl pkcs12 -export -in certificate.crt -inkey private_key....
davos's user avatar
  • 1
0 votes
2 answers
181 views

I have a X.509 certificate mycert.pem and a private-key mykey.pem for it. Furthermore the certificate has a root-certificate and a intermediate-certificate to build a complete chain. I had to add both ...
chris01's user avatar
  • 1,039
0 votes
0 answers
402 views

I am attempting to rebuild Apache from source and am encountering an issue I have not faced before. I have built Apache version 2.4.57 from source many times in the past and have had no issues during ...
user10709800's user avatar
3 votes
2 answers
1k views

When I execute: openssl s_client -connect google.com:443 openssl s_client -connect government.ru:443 This gives me valuable output, but I would like openssl to close the connection and exit returning ...
John Smith's user avatar
1 vote
0 answers
663 views

RSA keys going to be decommissioned due to weak security and hence tried o generate a key using ED25519 type using the command ssh-keygen -t ed25519 -C “testkey” and generated the public private key. ...
Muthu Kumar's user avatar
0 votes
1 answer
123 views

I am trying to connect Outlook 2019 to a Cyrus imapd server, using an SSL connection on port 993, and using ECDHE for key agreement. Whatever I do, this does not work although the imap server is set ...
Binarus's user avatar
  • 3,941
3 votes
2 answers
2k views

With a public key as PEM, how can this be converted to DER format using openssl? Please note that this is not a x509 certificate. Also this question is about EC (ECDSA) public keys not RSA and using ...
code2535's user avatar
3 votes
3 answers
3k views

We have a private certificate authority (CA) which is only used on sites in our intranet. I can get the certificate easily: openssl s_client -showcerts -connect atlas.sim.local:8443 </dev/null 2>...
Stewart's user avatar
  • 16.1k
0 votes
1 answer
91 views

I would like to find a way, to identify what type of TLS a remote HTTPS endpoint is providing, using only "standard" Linux command-line tools. I would like to know, what type of TLS the ...
PaulEdison's user avatar
0 votes
1 answer
77 views

I am on an Intel x86_64 CPU architecture platform running a Debian Bullseye Linux distro. On that platform runs a custom application. This application is a 32-bit software running as a systemd service ...
Chris Haddad's user avatar
1 vote
1 answer
10k views

I'm setting up Ubuntu servers and have been using version 22.04 LTS as the base image. We run security scans on all our servers and this version of Ubuntu raises safety violations for having OpenSSL 3....
Ian's user avatar
  • 111

1
2 3 4 5
15