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 |
|
withTrustMaterial(is, truststore ...) is working |
|
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 |
|
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 |
|
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! |
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 |
|
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 |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
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.
All reactions