Re: Custom InputControl w/o char->string conversion

2019-03-26 Thread David Grieve
Have you looked at javax.security.auth.Destroyable? On 3/26/19 9:07 AM, Finn Herpich wrote: Hi Nicolas, thanks for the long write up. I'm indeed working with a lot of C# in the last year, but that is a pure accident, to reproduce the SecureString-class was not my intention. I'm totally aware

Re: Custom InputControl w/o char->string conversion

2019-03-26 Thread Finn Herpich
Hi Nicolas, thanks for the long write up. I'm indeed working with a lot of C# in the last year, but that is a pure accident, to reproduce the SecureString-class was not my intention. I'm totally aware of the problems you are listing, but sadly I've to handle sensitive information which force

Re: Custom InputControl w/o char->string conversion

2019-03-26 Thread Nicolas Therrien
Hi Finn, I assume you are coming from a C# background and looking for a SecureString equivalent in Java. Check out this: https://github.com/OWASP/passfault/blob/master/core/src/main/java/org/owasp/passfault/impl/SecureString.java You could write your own javafx component with OWASP