# Security-SimpleDes **Repository Path**: bwcx-jzy/Security-SimpleDes ## Basic Information - **Project Name**: Security-SimpleDes - **Description**: Security-SimpleDes - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2018-06-04 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README simple 简单的des 加密工具 8位key 使用方法: SystemKey systemKey = new SystemKey("test"); String mima = systemKey.encrypt("test123"); System.out.println("加密后:" + mima); System.out.println("解密:" + systemKey.decrypt(mima)); 如果key 小于8位自动补零,大于8位只取前8位