Guestbook #302
Replies: 7 comments 11 replies
-
Hi, Just had a quick question, does this library support calling withTrustMaterial for PEM files as well as JKS. I wish to enable the SSLFactory also by using some certs I have in .PEM files instead of importing into my JKS which is already working with the library Thanks |
Beta Was this translation helpful? Give feedback.
-
withTrustMaterial(is, truststore ...) is working |
Beta Was this translation helpful? Give feedback.
-
Hi, I have added the certificate which is a Self-signed cert in a PEM file and initialised with .withTrustMaterial(/path/cert.pem) In connecting to the server with a self signed cert I am getting SSL error None of the trustmanagers trust this certificate. I have enabled SSL debug and can see the self signed certificate in the logs. Is there any other change I need to make? Thanks |
Beta Was this translation helpful? Give feedback.
-
I haven't used this library yet and I found it searching a image o icon about android + key in google images In other hand im interested i sslpinning or certificate pinning usin Publick Key(PK) technique for Android kotlin |
Beta Was this translation helpful? Give feedback.
-
Hi there, I'm working on a Spring Boot project that requires SSL reloading at runtime. Thanks to your excellent work on instant-server-ssl-reloading, it works perfectly in my project. However, I've encountered another issue: I need to disable @Configuration
@EnableWebSecurity
public class SecurityConfig {
@Bean
@Order(Ordered.HIGHEST_PRECEDENCE)
public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Exception {
http.authorizeRequests(requests -> requests.antMatchers("/test/hello").permitAll());
return http.build();
}
} Even the Is there any way to resolve this? Thanks! |
Beta Was this translation helpful? Give feedback.
-
stackoverflow.com
I hate PKCS#12 and JKS, but i do not know why.
Yes, It is. The document is very clear. even my English is so bad.
Maybe a sub-project of spring-boot-starter ?
// sorry. my hateful company own the copyright. I can show code here |
Beta Was this translation helpful? Give feedback.
-
This library is so easy to use - thank you for providing it. I came across it on StackOverflow and am using it to create SSLSocketFactory instances where the trust store is certificates in a pem file.
OkHttpClient requires an explicit trust store to go with the SSL Socket Factory. In use so far it's been perfect - so easy to get going with and the examples are useful for a bunch of different scenarios |
Beta Was this translation helpful? Give feedback.
-
Hi all 👋🏼
First of all I appreciate that you guys are using this library! I am very happy to see the community is growing.
I hope it is making your life easier when configuring ssl for your server of http client. This library is grown to the current state thanks to the ideas and feedback from the community.
I am curious about your use case and would love to hear your story.
Beta Was this translation helpful? Give feedback.
All reactions