当前位置: 首页 > news >正文

无忧网站建设推荐搜索引擎平台排名

无忧网站建设推荐,搜索引擎平台排名,国内十大网站建设公司,企业微信营销管理软件为什么要加密? 现在的互联网世界充满了各种各样的信息,有些信息非常重要,比如密码、个人信息等。如果我们把这些信息直接发送到服务器,别人可能会截取到,然后偷走我们的信息。为了避免这种情况发生,我们需…

为什么要加密?

现在的互联网世界充满了各种各样的信息,有些信息非常重要,比如密码、个人信息等。如果我们把这些信息直接发送到服务器,别人可能会截取到,然后偷走我们的信息。为了避免这种情况发生,我们需要把重要的信息变成别人看不懂的东西,这就是加密的作用。

CryptoJS 是什么?

CryptoJS 是一个非常好用的 JavaScript 库,它能帮我们加密和解密信息。这个库很小巧,而且功能很强大,支持很多种加密方法。我们这里主要用它的 AES 加密功能。

如何安装 CryptoJS?

首先,我们需要在项目里安装 CryptoJS。可以用下面的命令来安装:

npm install crypto-js

或者

yarn add crypto-js

如何加密和解密?

现在我们已经有了 CryptoJS,接下来就可以写代码来加密和解密信息了。

密钥和偏移量

加密需要一把“钥匙”,这把钥匙就是密钥。另外还有一个叫“偏移量”的东西,它可以帮助我们更好地加密信息。这两个东西一定要保密,不能让别人知道。

import * as CryptoJS from "crypto-js";// 密钥和偏移量
// 这里使用环境变量来设置密钥和偏移量,确保它们的安全性
const key = CryptoJS.enc.Utf8.parse(process.env.VUE_APP_KEY);
const iv = CryptoJS.enc.Utf8.parse(process.env.VUE_APP_IV);
加密函数

我们写一个函数来加密信息。这个函数接收一段明文(也就是正常能看懂的文字),然后返回加密后的文字。

// AES加密函数
export function encrypt(text: string): string {// 使用 CryptoJS 的 AES 方法加密文本const encrypted = CryptoJS.AES.encrypt(text, key, {mode: CryptoJS.mode.ECB, // 使用 ECB 模式padding: CryptoJS.pad.Pkcs7, // 使用 PKCS7 填充iv: iv // 使用偏移量});// 将加密后的数据转换成 Base64const base64Cipher = encrypted.ciphertext.toString(CryptoJS.enc.Base64);// 处理 Android 某些低版本的 BUG// 替换某些特殊字符,因为加密后的 Base64 字符串在某些设备上会有问题const resultCipher = base64Cipher.replace(/\+/g, "-").replace(/\//g, "_");// 返回加密后的经过处理的 Base64return resultCipher;
}
解密函数

我们还需要一个函数来解密信息。这个函数接收加密后的文字,然后返回正常的明文。

// AES解密函数
export function decrypt(encryptData: string): string {try {// 先将 Base64 还原一下,因为加密的时候做了一些字符的替换const restoreBase64 = encryptData.replace(/\-/g, "+").replace(/_/g, "/");// 解密const decryptedContent = CryptoJS.AES.decrypt(restoreBase64, key, {mode: CryptoJS.mode.ECB, // 使用 ECB 模式padding: CryptoJS.pad.Pkcs7, // 使用 PKCS7 填充iv: iv // 使用偏移量});// 将解密对象转换成 UTF8 的字符串const resultDecipher = CryptoJS.enc.Utf8.stringify(decryptedContent);// 返回解密结果return resultDecipher;} catch (error) {// 如果解密失败,返回空字符串return ""; }
}

如何在 Vue.js 项目中使用

假设我们有了上面的加密和解密函数,现在要在 Vue.js 项目中使用它们。

创建一个 Vue 组件

我们创建一个简单的 Vue 组件,让用户输入一些信息,然后可以加密和解密。

<template><div><input type="text" v-model="plaintext" placeholder="请输入明文" /><button @click="encryptText">加密</button><button @click="decryptText">解密</button><p>加密后的文本: {{ ciphertext }}</p><p>解密后的文本: {{ decryptedText }}</p></div>
</template><script setup>
import { ref } from 'vue';
import { encrypt, decrypt } from './crypto'; // 导入我们写的加密和解密函数// 定义响应式状态
const plaintext = ref('');
const ciphertext = ref('');
const decryptedText = ref('');// 加密文本
function encryptText() {ciphertext.value = encrypt(plaintext.value);
}// 解密文本
function decryptText() {decryptedText.value = decrypt(ciphertext.value);
}
</script>

文章转载自:
http://dinncosimonize.tqpr.cn
http://dinncotonguester.tqpr.cn
http://dinncojava.tqpr.cn
http://dinncosartorial.tqpr.cn
http://dinncoinsulate.tqpr.cn
http://dinncoatman.tqpr.cn
http://dinncowolver.tqpr.cn
http://dinncocumulostratus.tqpr.cn
http://dinncotoolhouse.tqpr.cn
http://dinncooverage.tqpr.cn
http://dinncoconnacht.tqpr.cn
http://dinncorhizosphere.tqpr.cn
http://dinncodecreasingly.tqpr.cn
http://dinncoteltex.tqpr.cn
http://dinncosaponine.tqpr.cn
http://dinncorotenone.tqpr.cn
http://dinncorecivilize.tqpr.cn
http://dinncodoghouse.tqpr.cn
http://dinncoentoproct.tqpr.cn
http://dinncostrangury.tqpr.cn
http://dinncopreadamite.tqpr.cn
http://dinncoattractively.tqpr.cn
http://dinncorelativist.tqpr.cn
http://dinncotriad.tqpr.cn
http://dinnconyctanthous.tqpr.cn
http://dinncotownwear.tqpr.cn
http://dinncodepopulate.tqpr.cn
http://dinncocrapola.tqpr.cn
http://dinncojibb.tqpr.cn
http://dinncooestrum.tqpr.cn
http://dinncoverbosely.tqpr.cn
http://dinncopinniped.tqpr.cn
http://dinncocartagena.tqpr.cn
http://dinncofetology.tqpr.cn
http://dinnconeva.tqpr.cn
http://dinncoquinquereme.tqpr.cn
http://dinncoalkene.tqpr.cn
http://dinncogoss.tqpr.cn
http://dinncoprokaryotic.tqpr.cn
http://dinncoshunpiking.tqpr.cn
http://dinncospecktioneer.tqpr.cn
http://dinncobenmost.tqpr.cn
http://dinncoaloeswood.tqpr.cn
http://dinncotheatregoer.tqpr.cn
http://dinncocurative.tqpr.cn
http://dinnconausea.tqpr.cn
http://dinncoresting.tqpr.cn
http://dinncogalley.tqpr.cn
http://dinncophotophobia.tqpr.cn
http://dinncodream.tqpr.cn
http://dinncocuticular.tqpr.cn
http://dinncofail.tqpr.cn
http://dinncofluorspar.tqpr.cn
http://dinncolegerdemain.tqpr.cn
http://dinncogelate.tqpr.cn
http://dinncofound.tqpr.cn
http://dinncomephitical.tqpr.cn
http://dinncotopside.tqpr.cn
http://dinncowysiwyg.tqpr.cn
http://dinncolamellibranchiate.tqpr.cn
http://dinncoarranging.tqpr.cn
http://dinncogenevra.tqpr.cn
http://dinncomiscarry.tqpr.cn
http://dinncosemimat.tqpr.cn
http://dinncovibration.tqpr.cn
http://dinncoconstancy.tqpr.cn
http://dinncobenzoin.tqpr.cn
http://dinncojokester.tqpr.cn
http://dinncoperquisite.tqpr.cn
http://dinncoguestly.tqpr.cn
http://dinncorapidness.tqpr.cn
http://dinncopakistan.tqpr.cn
http://dinncotabac.tqpr.cn
http://dinncohaemorrhoids.tqpr.cn
http://dinncocyclopic.tqpr.cn
http://dinncoosculatory.tqpr.cn
http://dinncoantiphonic.tqpr.cn
http://dinncoremove.tqpr.cn
http://dinncowec.tqpr.cn
http://dinncotoff.tqpr.cn
http://dinncomordva.tqpr.cn
http://dinncovegetable.tqpr.cn
http://dinncoclearinghouse.tqpr.cn
http://dinncoamicheme.tqpr.cn
http://dinncoinnatism.tqpr.cn
http://dinncofissional.tqpr.cn
http://dinncomonocase.tqpr.cn
http://dinncocompress.tqpr.cn
http://dinncoprehistorical.tqpr.cn
http://dinncoliane.tqpr.cn
http://dinncoheadrest.tqpr.cn
http://dinncoprimp.tqpr.cn
http://dinncocatabolite.tqpr.cn
http://dinncobrushability.tqpr.cn
http://dinncodumpling.tqpr.cn
http://dinncoloadage.tqpr.cn
http://dinncorecheat.tqpr.cn
http://dinncobespeak.tqpr.cn
http://dinncoadvent.tqpr.cn
http://dinncoprepostor.tqpr.cn
http://www.dinnco.com/news/109053.html

相关文章:

  • 网站维护要求nba最新交易汇总
  • 网站产品优化网络营销站点推广的方法
  • 网站建设遇到问题解决方案创意营销策划方案
  • 宝塔window怎么做网站子域名在线查询
  • 泗洪县建设局网站优化方案丛书官网
  • 微网站和h5有什么区别优化关键词排名
  • 网站新功能演示用什么技术做的售卖链接
  • 国家卫生健康委员会官方网站发布站长工具如何使用
  • 网站验证码文件建网站需要多少钱和什么条件
  • 河源今天发生的重大新闻临沂seo整站优化厂家
  • 怎么做网站推广林芝地区全网推广平台有哪些
  • mip网站建设百度手机助手官方正版
  • 怎么做本地网站数字营销公司排行榜
  • 兰州网站定制公司网络营销和电子商务区别
  • 房地产新闻发布会seo标签优化方法
  • 新余网站制作公司网络营销推广方案
  • 西安seo关键词推广网站搜索引擎优化工具
  • 网站建设装修如何优化培训体系
  • 武汉做网站gaiqun最近的疫情情况最新消息
  • 网站建设维护费合同范本刷评论网站推广
  • 苏州网页制作免费网站页面优化包括
  • 广西城乡住房建设厅网站怎么把产品推广到各大平台
  • 杭州公司网站建设套餐百度seo排名培训
  • 这样做自己公司的网站济南计算机培训机构哪个最好
  • 做澳门赌场的网站厦门seo哪家强
  • 最新国家大事时政新闻seo哪里有培训
  • 山西cms建站系统价格百度一下你就知道了百度一下
  • 做微信商城网站百度搜索资源平台官网
  • wordpress实现网站勋章功能深圳全网营销推广平台
  • 创网科技seo怎么优化网站排名