On Fri, 2 Jun 2023 12:58:36 GMT, Andrew John Hughes wrote:
>> Currently, security properties are held within the `java.security` file in
>> the JDK tree for each installed JDK. The system property
>> `java.security.properties` can be used to point to a file containing
>> additional properties.
There is a long standing limitation in the UNIX smartcardio implementation
which means it will only look for the `pcsclite` library in two locations;
`/usr/lib` and `/usr/local/lib`. It also only searches for an unversioned
library.
On systems that separate libraries from development headers in
On Tue, 18 Jul 2023 19:59:34 GMT, Ben Perez wrote:
> Fixing the bug as stated would cause compatibility issues. E.g. the
> `addProvider` function always adds new providers at position 0 and therefore
> would always throw an error. Instead of changing how the function handles
> indices, we inst
On Wed, 23 Aug 2023 15:57:51 GMT, Ben Perez wrote:
>> Fixing the bug as stated would cause compatibility issues. E.g. the
>> `addProvider` function always adds new providers at position 0 and therefore
>> would always throw an error. Instead of changing how the function handles
>> indices, we
On Wed, 23 Aug 2023 15:57:51 GMT, Ben Perez wrote:
>> Fixing the bug as stated would cause compatibility issues. E.g. the
>> `addProvider` function always adds new providers at position 0 and therefore
>> would always throw an error. Instead of changing how the function handles
>> indices, we
> Fixing the bug as stated would cause compatibility issues. E.g. the
> `addProvider` function always adds new providers at position 0 and therefore
> would always throw an error. Instead of changing how the function handles
> indices, we instead have added this behavior to the function spec.
B
> Currently there is a number of functionality that would be interesting to
> have for shared lib load operations in the JDK C code.
> Some examples :
> Events::log_dll_message for hs-err files reporting
> JFR event NativeLibraryLoad
> There is the need to update the shared lib Cache on AIX ( see
On Mon, 14 Aug 2023 07:48:00 GMT, Matthias Baesken wrote:
> Currently there is a number of functionality that would be interesting to
> have for shared lib load operations in the JDK C code.
> Some examples :
> Events::log_dll_message for hs-err files reporting
> JFR event NativeLibraryLoad
> Th