Improved SecPasswordField and added unit tests

SecPasswordFields will now normalize any input to NFC on the fly. Any input typed into the password field will now get converted to NFC on-the-fly. This allows subsequent code to keep working on the CharSequence returned by getCharacters() without the need of additional Normalization. Affects #521
This commit is contained in:
Sebastian Stenzel
2019-02-22 16:38:39 +01:00
parent deded33da8
commit 4bfd1e6433
4 changed files with 234 additions and 7 deletions
+5
View File
@@ -109,5 +109,10 @@
<version>1.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-swing</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>