Two Way SSL (Mutual Authentication) For MuleSoft Application | API Security

preview_player
Показать описание
This video will describe how to setup two way ssl or mutual authentication between client and server for MuleSoft application. It will also give idea on how to create server keystore and truststore and also client keystore and trustore.

Комментарии
Автор

If I don't understand any concept simple watch jithender's explanation then I will become expert in that concept, that's his explanation, hatsoff bro

gpchowdary
Автор

Its realy Awesome .Thank you for such wonderful explanation. Wish i could more likes to ur videos.please Keep sharing

lopintipriya
Автор

superb explanation..one of the best videos on SSL...Thank you, Jitendra Keep Shining

DinuSru
Автор

Its great session but how did you opened last utility call cmd tool

ravellavenkatsubbaiah
Автор

Hi Jitendra, Please share the Keytool comments. Thanks

vivekravi
Автор

So is it necessary to have private key and public key both in keystore.jks file in two way SSL?
And how does the CA signed certificate effect this?

abhisheksolanki
Автор

Generate Server Keystore
keytool -genkey -alias mule-server -keyalg RSA -keystore server-keystore.jks

Extract Public Key from Server Keystore
keytool -export -alias mule-server -keystore server-keystore.jks -file server_trust.crt

Generate Client Truststore
keytool -import -alias mule-server -keystore client-truststore.jks -file server_trust.crt

Generate Client Keystore
keytool -genkey -alias mule-client -keyalg RSA -keystore client-keystore.jks

Extract Public Key from Client Keystore
keytool -export -alias mule-client -keystore client-keystore.jks -file client_trust.crt

Generate Server Truststore
keytool -import -alias mule-client -keystore server-truststore.jks -file client_trust.crt

muletechnologyacademy-zero
Автор

great explanation. plz upload more videos. thanks.

hussy
Автор

anything about load balancer configs would also be great

hussy