de.mkammerer.argon2.jna.JnaUint32 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of argon2-jvm Show documentation
Show all versions of argon2-jvm Show documentation
Argon2 Binding for the JVM
package de.mkammerer.argon2.jna;
import com.sun.jna.IntegerType;
/**
* uint32_t type for C interaction.
*/
public class JnaUint32 extends IntegerType {
/**
* Constructor.
*/
public JnaUint32() {
this(0);
}
/**
* Constructor.
*
* @param value Value.
*/
public JnaUint32(int value) {
super(4, value, true);
}
}