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
5
votes
1 answer

Sparse matrix: how to get nonzero indices for each row

I have an scipy CSR matrix and i want to get element column indices for each row. My approach is: import scipy.sparse as sp N = 100 d = 0.1 M = sp.rand(N, N, d, format='csr') indM = [row.nonzero()[1] for row in M] indM is what i need, it has the…
Alexey Trofimov
  • 4,287
  • 1
  • 18
  • 27
5
votes
2 answers

python sparse matrix get maximum values and index

I have a sparse matrix A(equal to 10 * 3 in dense), such as: print type(A) print A (0, 0) 0.0160478743808 (0, 2) 0.0317314165078 (1, 2) 0.0156596521648 (1, 0) 0.0575683686558 (2, 2) 0.0107481166871 (3, 0) …
KEXIN WANG
  • 123
  • 3
  • 13
5
votes
2 answers

What is the best way to generate Certificate Signing Request using AndroidKeyStoreProvider?

I read this article. It says how to generate a KeyPair, however it doesn't specify how to generate a Certificate Signing Request based on the generated keys. From my research, to generate a CSR in Java, the samples from the web usually use the…
Yeung
  • 2,202
  • 2
  • 27
  • 50
5
votes
2 answers

Create PKCS#10 CSR and HMAC seal

I'm stuck in creating correctly PKCS#10 certificate signing request and HMAC seal. I need to create them and send to remote service that will produce for me certificate in PKCS#7 format. More exactly: Create a key pair for certificate and generate…
Skyzer
  • 584
  • 3
  • 11
  • 27
5
votes
2 answers

Renewing Development & Distribution Certificates - Should I use the same CSR for both?

I need to renew my Development & Distribution Certificates. It's expiring soon and I'm a bit worried doing so before being 100% sure I'm doing the right thing. (there are 20 apps on the app store attached to those Certificates ) Any way, I've read a…
Segev
  • 19,035
  • 12
  • 80
  • 152
5
votes
2 answers

Generating CSR in keychain, private key not created osx

I am generating a CSR to enable push notifications in my app (following the instructions here) http://www.raywenderlich.com/3443/apple-push-notification-services-tutorial-part-12 But when I create the CSR, it is supposed to create a private key in…
Brentoe
  • 448
  • 4
  • 12
4
votes
0 answers

Generating CSR using Android KeyStore keys

Is there a way of generating CSRs of keys stored inside an Android KeyStore? I know you can generate keys then generate a CSR and lastly store the keys inside the Android KeyStore, but is it also possible to generate CSRs of at an earlier point…
C3nturyFox
  • 41
  • 1
4
votes
1 answer

How can I do this to approve a CSR in the Denied state?

View node status:kubectl get csr [root@kube1 ~]# kubectl get csr NAME AGE REQUESTOR CONDITION node-csr--jJF_sRckTdhoqAOYB4fEaA06Juwv32d1RFwzcbbE0c 150m system:bootstrap:gn5vla …
4
votes
0 answers

How to create certificate request with OpenSSL library

I am trying to create certificate request programmatically in iOS using openSSL. I got testKey.pem(private key) and test.csr finally and the first works well in linux(by openssl command), however test.csr seams strange and cannot be recognized and…
shinyathena
  • 43
  • 2
  • 4
4
votes
0 answers

Create a CSR with OpenSSL without signing

I'm working with Openssl on C++ and getting in trouble with my CSR generation. What i'm wanted to do is creating a CSR without using the private key. I want to put my details and of course the public key in it, but because of security management i…
NFoerster
  • 386
  • 2
  • 16
4
votes
1 answer

Got "data isn't an object ID (tag = 49)" while generating X509 cert

I'm trying to generate my own CSR for my keystore, but it didn't go well and that error is confusing me. Here is my code: import java.io.BufferedInputStream; import java.io.File; import java.io.FileInputStream; import…
Kaninchen
  • 455
  • 2
  • 7
  • 19
4
votes
2 answers

Generate CSR from private key or Key Store

How can i generate CSR from the Key Store. I have generated CSR from key pair. Below is my code. public static PKCS10CertificationRequest generateCSR(KeyPair keyPair, String cn) throws IOException, OperatorCreationException { String…
Dante
  • 221
  • 1
  • 3
  • 14
4
votes
1 answer

Creating certificate with certreq tool where I have csr generated using openssl

I have created CSR using openssl and I want it to be signed by the Microsoft CA using command line with template as webServer.
Joshi
  • 573
  • 3
  • 11
  • 24
4
votes
2 answers

OpenSSL CSR using multiple SAN, and Extended Key Usage

I am new to this. My objective is to create a CSR for my Cisco Firewall. I have been suggested to use OpenSSL as I need to add the EKU which is not possible on Cisco CSR. The second requirement is to use multiple SANs. I have no clue how to do this…
faadi77
  • 41
  • 1
  • 1
  • 2
4
votes
3 answers

How to decode a .csr file in java to extract its content

I have three kinds of files to decode namely .csr and .der and .key files.I am able to decode .der file using the java as below. public class Base64Decoder { public static void main(String[] args) throws FileNotFoundException, IOException { …
LathaPatil
  • 143
  • 1
  • 3
  • 9