All Questions
Tagged with mtls x509certificate
8 questions
3
votes
1
answer
2k
views
What mTLS certificates are required when the client is also the server?
I am looking to connect a server and a number of clients using mTLS in golang. On my server I would like to be able to generate certificates to put on all the clients so clients can talk to the server ...
4
votes
1
answer
2k
views
How to create self-signed certificate using Ed25519 in C#
I have to generate X509 certificates using Ed25519. I know I should use RequestCertificate class from System.Security.Cryptography.X509Certificates namespace but seems that it doesn't support ed25519.
...
1
vote
1
answer
568
views
400 Bad Request HttpClient Mtls Certificate C#
Im receiving 400 bad request from the endPoint. I can see the cert loaded in httpClientHandler and then in httpclient, but it doest work.
public HttpClientHandler generateCert()
{
var ...
0
votes
2
answers
3k
views
unable to connect: error loading the X.509 key pair
I wrote a golang program which mTLS certs
package main
import (
"context"
"fmt"
"io"
"log"
"github.com/falcosecurity/client-go/pkg/...
0
votes
1
answer
360
views
Error while fetching Token with certificate & RSA Key in NodeJS
I am trying to fetch oauth token in NodeJS with key , certificate & client id.
Code for the same:
var form = {
client_id : CLIENT_ID,
grant_type: '...
3
votes
0
answers
722
views
Is it possible to secure only one spring boot rest endpoint via MTLS
Is it possible to secure only one spring boot rest endpoint via x509Certificate? (MTLS)
0
votes
1
answer
1k
views
mTLS X509 authenticated request in Java
I'm looking for a way to implement the following mTLS authenticated request in Java:
PFX=x509.pfx
curl --location --request POST 'https://example.com/' \
--cert-type p12 \
--cert "$PFX:...
1
vote
1
answer
889
views
Should we compare thumbprints in Mutual TLS?
When implementing Mutual TLS using https://learn.microsoft.com/en-us/aspnet/core/security/authentication/certauth?view=aspnetcore-5.0 I see they are comparing the thumbprint of the client certificate ...