wojciech.kapcia@tigase.net opened 3 years ago
|
|
This can be done in 8.3 as we will bump JDK requirement to JDK17 in that version |
|
Implemented self-signed certificated generation using There is a JDK bug that mentions this API change and they even have API prototype but it's still not available... possible in newer Java version it could be used. |
|
In docker:
|
|
Looks like the issue with emulating x86 on arm platform, which is very slow (so most likely execution of |
Type |
Task
|
Priority |
Normal
|
Assignee | |
Version |
tigase-server-8.3.0
|
Related
Issue Votes (0)
Watchers (0)
Currently
sun.security.*
API is being closed off (understandable). There is no reasonable alternative API to generate self-signed certificate within newer versions of JDK. One option would be to use BouncyCastle but this is yet another external library and we are trying to minimise dependency on those (memory usage).One alternative solution would be to use
keytool
command line tool to obtain the certificate - no additional dependencies and compatibility with newer versions of JDK.