lowentry.ue4.classes.AesKey1D Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lowentryue4 Show documentation
Show all versions of lowentryue4 Show documentation
A Java library for the Low Entry UE4 plugins.
package lowentry.ue4.classes;
public class AesKey1D
{
public final int rounds;
public final int[] encryptionW;
public final int[] decryptionW;
public AesKey1D(int rounds, int[] encryptionW, int[] decryptionW)
{
this.rounds = rounds;
this.encryptionW = encryptionW;
this.decryptionW = decryptionW;
}
}