Re: [Internet]Re: "Pluggable" key serialization in JCE/JCA

2022-03-28 Thread Anthony Vanelverdinghe
Just for the record, the code for the EU Digital Covid Certificate is available on GitHub at https://github.com/orgs/ehn-dcc-development/repositories?language=java Specifically, https://github.com/ehn-dcc-development/dgc-java#structure says "CBOR, CWT/COSE - Support for representing the DGC in C

JEP 411: methods in j.u.c.Executors

2021-04-20 Thread Anthony Vanelverdinghe
The JEP should also address the following methods in java.util.concurrent.Executors: privilegedCallable, privilegedCallableUsingCurrentClassLoader​, privilegedThreadFactory Since AccessController et al. will be terminally deprecated, I'd assume these methods should be as well. Kind regards, Ant

Re: JEP411: Missing use-case: Monitoring / restricting libraries

2021-04-17 Thread Anthony Vanelverdinghe
Actually I think GraalVM can already do this today, since the mentioned API is for use with any guest language, and Java can now run as a guest language [1]. Note that this is also reminiscent of the `java.scripting` module (JSR 223), which also has a `ScriptContext` class, but I'm not sure what