登录国密sm4改造

dev-sm4
wangxy 4 months ago
parent 396c45f361
commit 1948af7c21

@ -40,7 +40,7 @@
"axios": "0.24.0", "axios": "0.24.0",
"clipboard": "2.0.8", "clipboard": "2.0.8",
"core-js": "3.25.3", "core-js": "3.25.3",
"crypto-js": "4.1.1", "crypto-js": "^4.1.1",
"echarts": "5.4.0", "echarts": "5.4.0",
"element-ui": "2.15.14", "element-ui": "2.15.14",
"file-saver": "2.0.5", "file-saver": "2.0.5",
@ -52,6 +52,7 @@
"nprogress": "0.2.0", "nprogress": "0.2.0",
"quill": "1.3.7", "quill": "1.3.7",
"screenfull": "5.0.2", "screenfull": "5.0.2",
"sm-crypto": "^0.3.13",
"sortablejs": "1.10.2", "sortablejs": "1.10.2",
"vue": "2.6.12", "vue": "2.6.12",
"vue-count-to": "1.0.13", "vue-count-to": "1.0.13",

@ -1,9 +1,6 @@
import request from '@/utils/request' import request from '@/utils/request'
import { encrypt } from '@/utils/jsencrypt'
// 登录方法 // 登录方法
export function login(username, password, code) { export function login(username, password, code) {
password = encrypt(password);
const data = { const data = {
username, username,
password, password,
@ -55,3 +52,11 @@ export function isCaptchaEnabled() {
method: 'get' method: 'get'
}) })
} }
// 获取key
export function getPublicKey() {
return request({
url: '/publicKey',
method: 'get',
})
}

@ -0,0 +1,17 @@
const sm4 =require('sm-crypto').sm4
//const key='7f5cd501e5548914edaed6824d3ff79d'//可以为16进制串或字节数组要求为128比特
/**
* 加密
* @param txt
* @returns {*}
*/
export function encrypt(txt,key) {
console.log(txt)
console.log(key)
return sm4.encrypt(txt,key);
}
export function decrypt(txt,key) {
return sm4.decrypt(txt,key);
}

@ -1,5 +1,6 @@
import { login, logout, getInfo } from '@/api/login' import {login, logout, getInfo, getPublicKey} from '@/api/login'
import { getToken, setToken, removeToken } from '@/utils/auth' import { getToken, setToken, removeToken } from '@/utils/auth'
import {encrypt} from "@/api/sm4";
const user = { const user = {
state: { state: {
@ -33,23 +34,39 @@ const user = {
}, },
actions: { actions: {
getPublicKey() {
return new Promise((resolve, reject) => {
getPublicKey()
.then(res => {
resolve(res)
})
.catch(error => {
reject(error)
})
})
},
// 登录 // 登录
Login({ commit }, userInfo) { Login({ commit, dispatch }, userInfo) {
const username = userInfo.username.trim()
const password = userInfo.password
const code = userInfo.code
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
login(username, password, code).then(res => { dispatch('getPublicKey').then(res => {
setToken(res.token) let publicKey = res
commit('SET_TOKEN', res.token) const username = userInfo.username.trim()
resolve() //调用加密方法(传密码和公钥)
}).catch(error => { const password = encrypt(userInfo.password,publicKey)
reject(error) const code = userInfo.code
const uuid = userInfo.uuid
login(username, password, code, uuid)
.then(res => {
setToken(res.token)
commit('SET_TOKEN', res.token)
resolve()
})
.catch(error => {
reject(error)
})
}) })
}) })
}, },
// 获取用户信息 // 获取用户信息
GetInfo({ commit, state }) { GetInfo({ commit, state }) {
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {

@ -77,7 +77,8 @@
</template> </template>
<script> <script>
import { getCodeImg, register } from "@/api/login"; import {getCodeImg, getPublicKey, register} from "@/api/login";
import {encrypt} from "@/api/sm4";
export default { export default {
name: "Register", name: "Register",
dicts: [ 'rew_apply_type'], dicts: [ 'rew_apply_type'],
@ -134,26 +135,44 @@ export default {
} }
}); });
}, },
getPublicKey() {
return new Promise((resolve, reject) => {
getPublicKey()
.then(res => {
resolve(res)
})
.catch(error => {
reject(error)
})
})
},
handleRegister() { handleRegister() {
this.$refs.registerForm.validate(valid => { this.$refs.registerForm.validate(valid => {
if (valid) { if (valid) {
this.loading = true; this.getPublicKey().then(res => {
register(this.registerForm).then(res => { let publicKey = res
const username = this.registerForm.username; this.registerForm.password = encrypt(this.registerForm.password, publicKey)
this.$alert("<font color='red'>恭喜你,您的账号 " + username + " 注册成功!</font>", '系统提示', { this.registerForm.confirmPassword = encrypt(this.registerForm.confirmPassword, publicKey)
dangerouslyUseHTMLString: true, this.loading = true
type: 'success' register(this.registerForm).then(res => {
}).then(() => { const username = this.registerForm.username
this.$router.push("/login"); this.$alert('<font color=\'red\'>恭喜你,您的账号 ' + username + ' 注册成功!</font>', '系统提示', {
}).catch(() => {}); dangerouslyUseHTMLString: true,
}).catch(() => { type: 'success'
this.loading = false; }).then(() => {
if (this.captchaEnabled) { this.$router.push('/login')
this.getCode(); }).catch(() => {
} })
}).catch(() => {
this.loading = false
if (this.captchaEnabled) {
this.getCode()
}
})
}) })
} }
}); })
} }
} }
}; };

@ -18,6 +18,8 @@
<script> <script>
import { updateUserPwd } from "@/api/system/user"; import { updateUserPwd } from "@/api/system/user";
import {encrypt} from "@/api/sm4";
import {getPublicKey} from "@/api/login";
export default { export default {
data() { data() {
@ -52,12 +54,30 @@ export default {
}; };
}, },
methods: { methods: {
getPublicKey() {
return new Promise((resolve, reject) => {
getPublicKey()
.then(res => {
resolve(res)
})
.catch(error => {
reject(error)
})
})
},
submit() { submit() {
this.$refs["form"].validate(valid => { this.$refs["form"].validate(valid => {
if (valid) { if (valid) {
updateUserPwd(this.user.oldPassword, this.user.newPassword).then(response => { this.getPublicKey().then(res=>{
this.$modal.msgSuccess("修改成功"); let publicKey = res
}); const oldPassword = encrypt(this.user.oldPassword, publicKey)
const newPassword = encrypt(this.user.newPassword, publicKey)
updateUserPwd(oldPassword, newPassword).then(
response => {
this.$modal.msgSuccess("修改成功");
}
);
})
} }
}); });
}, },

Loading…
Cancel
Save