nest 非对称加密(rsa),登录密码为例

nest

import * as NodeRSA from 'node-rsa';

let priKey = new NodeRSA({ b: 1024 });
priKey.setOptions({ encryptionScheme: 'pkcs1' });

// 解密
export function decrypt(txt: string) {
  return priKey.decrypt(txt, 'utf8');
}
// 获取公钥
export function getPubKey() {
  return priKey.exportKey('public');
}

// 重置key
export function resetPriKey() {
  priKey = new NodeRSA({ b: 1024 });
  priKey.setOptions({ encryptionScheme: 'pkcs1' });
}

公钥做接口前端可调用
重置是用来配合定时任务做定期更新

前端

<script setup lang="ts">
import axios from "axios";
 import JSEncrypt from "jsencrypt";

let pubKey   ;
const fetPubKey = async () => {
    const res = await axios({
        method: "GET",
        url: "http://127.0.0.1:3000/auth/getPubKey",
        headers: {
            'Content-Type': 'application/json;charset=UTF-8'
        }
    })
    pubKey  = res.data.data
}
const fetchLogin = async () => {
    await fetPubKey()
    const encryptor = new JSEncrypt()
    encryptor.setPublicKey(pubKey)
    const pwd = encryptor.encrypt('pwd-wm')
    axios({
        method: "POST",
        url: "http://127.0.0.1:3000/auth/login",
        data: {"name": "wm", "pwd": pwd},
        headers: {
            'Content-Type': 'application/json;charset=UTF-8'
        }
    }).then(response => {
        console.log(response);
    })
}
</script>

<template>
    <button @click="fetchLogin">登录</button>
</template>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值