# aes-crypto **Repository Path**: kanweiwei/aes-crypto ## Basic Information - **Project Name**: aes-crypto - **Description**: aes 加/解密 - **Primary Language**: TypeScript - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2021-04-19 - **Last Updated**: 2023-03-08 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # aes-crypto #### 介绍 aes 加/解密 #### 安装教程 1. yarn add git+https://gitee.com/kanweiwei/aes-crypto.git -S #### 使用说明 ```javascript const aesEncrypto = new AesEncrypto("xxx"); // 加密 aesEncrypto.aesEncrypt("sssssss"); // 解密 aesEncrypto.aesDecrypt("sssssss"); ```