Skip to main content

All Questions

Tagged with
Filter by
Sorted by
Tagged with
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 ...
Maggie's user avatar
  • 251
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. ...
Szyszka947's user avatar
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 ...
David Cordente's user avatar
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/...
Sathya's user avatar
  • 89
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: '...
Atharva's user avatar
  • 83
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)
Udesh Athukorala's user avatar
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:...
maz's user avatar
  • 123
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 ...
Andrew's user avatar
  • 221