blob: 34ef981cca0bacfff62469da17b49078bcadc5fb [file] [log] [blame]
package jnr.posix;
import jnr.ffi.Pointer;
public interface Crypt {
CharSequence crypt(CharSequence key, CharSequence salt);
Pointer crypt(byte[] key, byte[] salt);
}