
lowentry.ue4.classes.AesKey Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java Show documentation
Show all versions of java Show documentation
A Java library for the Low Entry UE4 plugins.
package lowentry.ue4.classes;
public class AesKey
{
public final int rounds;
public final int[][] encryptionW;
public final int[][] decryptionW;
public AesKey(int rounds, int[][] encryptionW, int[][] decryptionW)
{
this.rounds = rounds;
this.encryptionW = encryptionW;
this.decryptionW = decryptionW;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy