AGENTS.md + code cleanup

This commit is contained in:
Oracle 2026-04-23 13:36:46 +02:00
parent 21b4169130
commit 9df61e0cd3
Signed by: Oracle
SSH key fingerprint: SHA256:x4/RtnjUyuHkdvmwNDsWSfcfF1V5PNr3OpriZqOvCX8
20 changed files with 365 additions and 910 deletions

View file

@ -3,8 +3,7 @@ package ai.nomyo;
import ai.nomyo.errors.SecurityError;
/**
* @author NieGestorben
* Copyright© (c) 2026, All Rights Reserved.
* Entry point loads RSA keys and validates key length.
*/
public class Main {
@ -16,7 +15,7 @@ public class Main {
try {
secureCompletionClient.validateRsaKey(secureCompletionClient.getPrivateKey());
} catch (SecurityError e) {
System.out.println("RSA Key is to short!");
System.out.println("RSA Key is too short!");
return;
}