mutual-authentication Questions
5
Solved
I'm trying to set up a Java web service running in Tomcat 7 to use mutual (2-way) authentication. It seems like no matter what I do, connecting to the service on the secure port isn't working.
Her...
Jefferey asked 8/12, 2014 at 16:38
1
Solved
I've got a program that makes use of the java.net.http.HttpClient, which was introduced in Java 11, to connect and send requests to internal services. These services are mutually authenticated, bot...
Magruder asked 9/10, 2021 at 12:48
1
Solved
I need to send a .CRT and .KEY file on an api request. I managed to do the request using Postman, but I don't know how to pass the key in the android code.
CRT:
-----BEGIN CERTIFICATE-----
-----...
Fortdefrance asked 22/11, 2019 at 19:53
1
A different thread pointed out a couple of services that would require a client MTLS certificate, accept any cert, and then respond with information about the SSL handshake/certs.
HTTPS test serve...
Loading asked 27/6, 2019 at 20:52
2
I have an application installed in tomcat which currently I am running on http.
Also I have used AWS API gateway to expose my application .
I want to implement mutual auth between aws api gateway a...
Pacificia asked 28/1, 2016 at 19:13
1
Solved
I am getting the above error when making post request, using spring resttemplate with mutual authentication.
@Bean
public RestTemplate restTemplate() throws UnrecoverableKeyException,
NoSuchAlgor...
Brownson asked 5/12, 2020 at 17:6
2
Solved
To perform client certificate authentication (mutual authentication) all examples I've found assume that a private key is accessible (e.g. from a file). A certificate containing private and public ...
Usquebaugh asked 27/3, 2020 at 15:54
1
Solved
In Cloud Foundry I have it configured so that a client certificate is forwarded to my spring boot application.
The certificate is placed in a x-forwarded-client-cert header, the spring boot applic...
Colangelo asked 15/11, 2018 at 9:9
1
Solved
I am building an AWS Lambda service for a small PoC. The flow in PoC is :
take a (text) input via POST,
performs a small string manipulation +
store the manipulated value into DynamoDB, and the...
Bivalve asked 6/3, 2017 at 6:31
4
Team I am facing following issue when try to complete a mutual handshake using HTTPS
main, READ: TLSv1.2 Handshake, length = 30
*** CertificateRequest
Cert Types: RSA, DSS, ECDSA
Supported Signatu...
Torquemada asked 16/6, 2016 at 21:12
1
I have an application which exposes the urls using mutual Authentication. Now I am writing a python script which uses Popen to run the curl command to connect to the application and gets me the req...
Beauvoir asked 30/4, 2020 at 18:47
2
Solved
I am trying to do a cUrl to a 3rd party server. They provided me with a p12 file which I installed in my browser. When using the browser I get a response from the server. When doing a cUrl from the...
Leadbelly asked 7/4, 2019 at 17:7
1
Solved
I am implementing mutual authentication between a single client hosted app (CLIENT) and my spring boot 2 application (SERVER). I understand the steps to be as follows:
The server generates a keys...
Madness asked 14/10, 2018 at 1:19
2
Solved
I use the WinINet library to connect to a website.
Using the Internet Explorer (Win10) it works and shows me the message to select the certificate to use.
This is the delphi code I call:
FUNCTIO...
Instar asked 23/3, 2018 at 18:57
2
I have recently gone through an extremely arduous process to build something that should be very simple yet appears to be essentially un-findable in any one place. I’d like to try to put everything...
Askins asked 8/3, 2016 at 14:52
3
Solved
I want to use TLS mutual authentication to authenticate a client on a API made in go. I've created a certificate authority, and let's say Bob has a key pair he wants to use with the client. Bob cre...
Toner asked 7/3, 2017 at 7:58
2
I'm attempting to access a client certificate inside my web API from an HTTP request. I'm attaching a certificate as follows:
X509Certificate2 clientCert = GetClientCertificate();
HttpWebRequest ...
Juniorjuniority asked 1/12, 2016 at 20:52
4
Solved
I need to create a secure channel between my server and a remote web service. I'll be using HTTPS with a client certificate. I'll also need to validate the certificate presented by the remote servi...
Karat asked 9/12, 2009 at 16:27
1
I need to know how to do Mutual Authentication in c#. I know it is pretty easy in WCF applications. However, I have to do two way SSL authentication from console applciation in C#. I have the two p...
Sanbo asked 25/11, 2014 at 15:47
1
I am building an app that requires mutual authentication. So I will enable my users to upload a bunch of client certs and when they make calls, they can use either of them. I will match the client ...
Cutwater asked 5/8, 2014 at 18:46
2
Solved
I need a snippet of code for a program i am writing with Boost Asio SSL.
I have a system of two clients, that connect with each other. I require them to do a mutual authentication, so, that at the ...
Apollinaire asked 16/8, 2014 at 19:2
1
All the certs are generated using another self signed CA cert right now. I am doing a POC for a project.
It's imperative for me to figure out a way to get information about the client certs that a...
Deboer asked 1/8, 2014 at 7:17
1
Solved
I'm exploring using ServiceStack as an alternative to WCF. One of my requirements is that the server and client must mutually authenticate using certificates. The client is a service so I cannot us...
Chelyabinsk asked 15/7, 2014 at 1:58
0
Currently I am working on an app that uses mutual authentication in order to communicate with a REST interface. Because I am very new to this topic I studied several examples - and now I have some ...
Apopemptic asked 21/5, 2014 at 13:52
1
Solved
I am trying to set up a mutually authenticated SSL between a Linux Server and Android APP.
So far, I have been able to get the app to work with the server certificate communicate via SSL but once I...
Inseparable asked 16/4, 2014 at 15:39
1 Next >
© 2022 - 2024 — McMap. All rights reserved.