Questions tagged [csr]

In Public Key Infrastructure cryptography a CSR is a Certificate Signing Request

In Public Key Infrastructure cryptography a CSR is a Certificate Signing Request. A CSR is a request sent to a Certification Authority to receive a digital certificate based on the information contained within the CSR such as the identity of the web site or user applying for the certificate.

522 questions
4
votes
2 answers

Is it possible to generate certificate signing request(.csr) using security framework in iOS?

I would like to make HTTPS request with a server require client-certificate authentication. I looked into this Creating a SecCertificateRef for NSURLConnection Authentication Challenge. It worked as expected. However, it needs to prepare the p12…
Yeung
  • 2,202
  • 2
  • 27
  • 50
4
votes
1 answer

using openssl creating csr for localhost

I am using openssl (on windows) to create a csr to go with a (test trial) Certificate. I have never done this before, and I have a question: After creating the private key, you create a csr file and you're asked to give personal information. One of…
user1015214
  • 2,733
  • 10
  • 36
  • 66
3
votes
1 answer

Can a Cert be issued without a CSR and using old Private Key

I'm confused about something in the SSL renewal process using WHM/cPanel for an existing Comodo Extended Validation cert. We have been issued a replacement certificate by Comodo without - I believe - every submitting a CSR for them. I say "I…
Mere Development
  • 2,439
  • 5
  • 32
  • 63
3
votes
1 answer

How to create "Certificate Signing Request" run on all version of window using Xenroll and CertEnroll?

I have project must create Certificate Signing Request (CSR), then i use Xenroll api. But the problem is when i use Xenroll.dll (supported in Window XP) but when in window vista and new version of window, this DLL reconstructed and rename to…
tandaica0612
  • 369
  • 10
  • 23
3
votes
1 answer

Generated CSR has unexpected extension attributes using CertificateEnrollmentManager

I am currently working on generating a Certificate Request using CertificateEnrollmentManager from Windows.Security.Cryptography.Certificates. The CSR has been successfully generated but its extensions have different attributes than what I specified…
jamsubzero
  • 31
  • 4
3
votes
1 answer

How do I import a CSR reply back into my key-pair via command line?

I've created a keystore with an initial key-pair using keytool -genkeypair command, then generated the CSR using keytool -certreg command, then got it signed by our CA. Now that I got the CSR reply myCSRreply.cer, how do I incorporate the CSR reply…
supertonsky
  • 2,563
  • 6
  • 38
  • 68
3
votes
1 answer

How can I convert .csr into .pem file format as I have to submit csr in pem format

I have to submit CSR in pem format. I have generated CSR using OpenSSL but got stuck in converting it into PEM format. I have to obtain example - csr.pem from example.csr. How it can be done?
vikas pandit
  • 39
  • 1
  • 1
  • 2
3
votes
2 answers

Building a Certificate Authority architecture

I am trying to build a network involving multiple clients and a single server, both written in Java. I am trying to find a way to automatically generate a CSR on the client side that can be sent to the server for a signed certificate. I have been…
Russ
  • 31
  • 1
  • 2
3
votes
1 answer

How to create a certificate signing request with extensions and atributes values in GO?

I'm trying to use crypto/x509 package to create a certificate request (csr) but I can't figure out how to add extensions and atributes parameters. In CertificateRequest struct we can see that extensions are pkix.Extension type. This is the structure…
Vivi
  • 693
  • 2
  • 11
  • 21
3
votes
2 answers

How to allow GetBucketLocation promission on s3 bucket in order to create CA

In order to update the SSL certificate on AWS, CA is required for the CSR. When I try to configure and create the CA, I get this massage: ValidationException The ACM Private CA Service Principal 'acm-pca.amazonaws.com' requires…
Gensus
  • 75
  • 1
  • 6
3
votes
2 answers

Create CSR and self-signed-certificate with pyOpenSSL

using pyOpenSSL I want to create a key pair for self-signing a certificate signing request (csr) a self-signed-certificate When I use the openSSL command line tool I used the following commands to do that: a key pair for self-signing openssl…
Steve Murdock
  • 709
  • 1
  • 10
  • 20
3
votes
2 answers

Generate a CSR with no country, state or Organizational Unit

I need to generate a CSR which I've done many times. However the certificate I'm trying to generate it for only has Subject values for the CN, OU and DC . OpenSSL doesn't let you leave the State, City or O values blank; it just auto-fills them with…
3
votes
1 answer

Generate CSR with subjectAltName extension

I'm currently using the following code to generate CSRs with subjectAltName for additional domains. $domains = ["example.com", "www.example.com"]; $san = implode(",", array_map(function ($dns) { return "DNS:" . $dns; }, $domains)); $csr =…
kelunik
  • 6,750
  • 2
  • 41
  • 70
3
votes
2 answers

Sparse matrix creation in parallel

Are there any algorithms that allow efficient creation (element filling) of sparse (e.g. CSR or coordinate) matrix in parallel?
Fic Firic
  • 41
  • 2
3
votes
1 answer

Generating a SAN CSR in PHP

I am currently writing a script to generate CSRs through a web interface for submission to generate a certificate. My current issue is that I want to generate a SAN certificate but I can't find any information on how to add the subjectAlternateName…
Flibx
  • 95
  • 1
  • 7