You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
udi-wms-third-java/src/main/java/com/glxp/mipsdl/util/TestDLL.java

27 lines
920 B
Java

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.glxp.mipsdl.util;
import cn.hutool.json.JSONUtil;
import com.alibaba.fastjson.JSONObject;
import com.sun.jna.Library;
import com.sun.jna.Memory;
import com.sun.jna.Native;
import com.sun.jna.Pointer;
import com.sun.jna.ptr.ByteByReference;
import com.sun.jna.ptr.IntByReference;
import com.sun.jna.ptr.PointerByReference;
import java.util.List;
import java.util.Map;
import java.util.Objects;
public interface TestDLL extends Library {
//加载dll实例成对象。下面的方法均为dll提供的方法
TestDLL instance = (TestDLL)Native.load("hsafsiyhsafe去@(2).dll",TestDLL.class);
int gm_ecb_encrypt_key(String pub_key, String plain, int plain_len, Pointer cipher);
int gm_ecb_decrypt_key(Pointer pub_key,Pointer cipher,IntByReference cipher_len,Pointer plain);
public static void main(String[] args) {
System.out.println("2024-11-08 00:00:00".length());
}
}