# ice_license **Repository Path**: icefairy/ice_license ## Basic Information - **Project Name**: ice_license - **Description**: No description available - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-11-22 - **Last Updated**: 2023-06-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # IceLicense授权管理 ## 特性 + 支持使用时间限制 + 使用RSA非对称加密技术 + MAC绑定(1.2+) 留空为不检测 + 主板序列号绑定(1.2+) 留空为不检测 + IP地址绑定(1.2+) 留空不检测 ```java public class License implements Serializable { /** * 客户名称 */ private String clientName; /** * 有效期开始时间 */ private Date start; /** * 有效期结束时间 */ private Date end; /** * 给哪个产品的 */ private String product; /** * 绑定MAC地址 */ private String mac; /** * 绑定主板序列号 */ private String boardSerial; /** * 绑定ip地址 */ private String ip; } ``` 使用说明:https://gitee.com/icefairy/license-demo.git