x509certificate Questions
8
Solved
Is there a way to install CA certificate (.crt file) under the Security -> Trusted Credential -> User tab via ADB? or any other "scriptable" way.
Conflagration asked 6/7, 2017 at 7:51
8
Solved
I am trying to Update the SSL certificate in accordance with this post
.
I am noob in certificates, so i followed this guide. But, when i enter
keytool -keystore mycacerts -storepass changeit ...
Sandler asked 27/3, 2012 at 12:38
1
I am trying to create simple client side certificate and for that I following below link...
How to create client certificate
I have installed SDK on machine, and I have successfully run below two...
Enroot asked 31/5, 2013 at 7:40
5
I am getting the error given below when parsing the signature. Anybody has idea why the error is showing?
Note that:
Using the same certificate I signed my own XML and verified which is working...
Awash asked 7/7, 2015 at 17:30
22
Description of problem:
I'm trying to pull ubuntu from the public registry with this command :
docker pull ubuntu
And then i got this results (the previous command was working yesterday) :
"Er...
Rainbolt asked 9/2, 2016 at 10:37
2
Solved
I've created an X509 certificate using OpenSSL. I am trying to load it using the Import method on the X509Certificate2 class, in .NET Core 2.0.
var cert = new X509Certificate2();
cert.Import(_path...
Rattlehead asked 11/12, 2017 at 15:45
14
Solved
Our Kubernetes 1.6 cluster had certificates generated when the cluster was built on April 13th, 2017.
On December 13th, 2017, our cluster was upgraded to version 1.8, and new certificates were gen...
Vide asked 17/4, 2018 at 19:1
2
I would like to use certificate from a JKS keystore within a NodeJS application.
var fs = require('fs');
var https = require('https');
var options = {
hostname: 'XXX.com',
port: 4443,
pat...
Frans asked 2/6, 2018 at 12:6
38
root@sclrdev:/home/sclr/certs/FreshCerts# curl --ftp-ssl --verbose ftp://{abc}/ -u trup:trup --cacert /etc/ssl/certs/ca-certificates.crt
* About to connect() to {abc} port 21 (#0)
* Trying {abc}......
Burt asked 7/7, 2014 at 13:23
12
I have a WinForms application that consumes a WCF, and pass as a parameter to a function a certificate:
mySvcClient.SendDocument(cert.Export(X509ContentType.SerializedCert, "password"));
...
In ...
Novelia asked 17/6, 2011 at 21:58
1
Solved
I was able to succesfully use the information on this page to digitally sign a file using an x509 certificate (.pfx file) using the following code:
const Int32 CRYPTUI_WIZ_NO_UI = 1;
const Int32 ...
Elegize asked 31/8, 2023 at 15:25
2
I have a simple script to show all certificates on a server, I would like to expand that script to then remove all expired certificates
I have tried several scripts from MS and 3rd parties to find...
Ranna asked 15/5, 2019 at 0:52
6
Solved
There seems to be a lot of confusing, sometimes conflicting, information with regards to making a .NET HttpListener HTTPS capable. My understanding is as follows:
One's C# code needs an https pref...
Milagro asked 9/7, 2012 at 21:19
22
Solved
I am using a SslServerSocket and client certificates and want to extract the CN from the SubjectDN from the client's X509Certificate.
At the moment I call cert.getSubjectX500Principal().getName() ...
Crispi asked 26/5, 2010 at 15:44
5
Solved
We create a X509Certificate2 object in our ASP.NET app to make periodic outgoing connections. Every time one of these certificates is created a new file is created in:
C:\ProgramData\Microsoft\Cryp...
Ashes asked 24/3, 2014 at 19:15
7
Solved
I'm having problems inserting a new CA certificate with privatekey in the Root certificate store of the localmachine.
This is what happens:
//This doesn't help either.
new StorePermission (Permi...
Triarchy asked 2/9, 2010 at 9:7
3
Solved
Sometimes when users cut and past their x509 certificates into our system from the web, spaces get mixed up in in there.
Is it safe to assume that spaces are not valid characters in x509 certific...
Interpretive asked 21/10, 2014 at 20:56
7
I want to create or obtain a certificate, create a pfx-file, load it and have IdentityServer use it. However, IdentityServer is not able to use my pfx.
How to successfully create a pfx and have Id...
Immitigable asked 17/10, 2018 at 9:21
2
Solved
I have the below piece of code to download cert from Azure Key Vault.
$secretName = "TestCert"
$kvSecret = Get-AzureKeyVaultSecret -VaultName $vaultName -Name $certificateName
$kvSecretBytes = ...
Stoneware asked 13/7, 2017 at 19:6
12
I'm trying to parse the developer certificate in embedded.mobileprovision file. Firstly I use
security cms -D -i embedded.mobileprovision
to get the base64 developer certificate string.
Then I...
Phyllida asked 12/7, 2017 at 5:8
3
Solved
I have tried using the solution provided in this link.
I am getting following error when i tried reading subject alternative names of X.509 Certificate
java.lang.NoSuchMethodError: org.bouncycastl...
Madder asked 23/6, 2015 at 4:28
13
Solved
The closest answer that I found is using "grep".
> openssl x509 -text -noout -in cert.pem | grep DNS
Is there better way to do this? I only prefer command line.
Thanks.
Mandragora asked 7/1, 2014 at 22:23
2
I am getting an error when I am trying to pull docker image.
We have set up the proxy, and in our organization we have explicit proxy, so to access external server we cannot do without setting it. ...
Capability asked 31/5, 2018 at 8:29
3
Solved
I'm trying to communicate with a server. This server send me a certificate and a private key in order to execute my request successfully.
To test the server, I use Postman.
So I fill the certifica...
Toolis asked 2/3, 2018 at 12:30
10
I am developing a TCP client to connect OpenSSL server with the certificate authentication. I have using .crt and .key files shared by server team. These certificates are generated by OpenSSL comma...
Copyread asked 5/6, 2015 at 10:44
1 Next >
© 2022 - 2024 — McMap. All rights reserved.