My Code:
public static void verschluesseln(int m) {
if(m < n) {
int c = m.modPow((int) n, oeffentlicherSchluessel[0]);
}
Error:
.java:51: error: int cannot be dereferenced
int c = m.modPow((int) n, oeffentlicherSchluessel[0]);
^
This did run in another project of mine. This is why I am heavily confused by this error.