
- 新增我的课程列表API接口 - 支持按学习状态筛选(全部/学习中/已完结) - 支持分页查询 - 包含课程基本信息、学习进度等数据 - 添加Apifox接口文档配置指南 文件变更: - server/api/admin/mycourse/mycourse.go - API接口定义 - server/internal/controller/admin/mycourse/mycourse.go - 控制器层 - server/internal/service/mycourse.go - 服务层(模拟数据) - server/internal/router/admin.go - 路由配置 - docs/apifox_config.md - 接口文档
43 lines
1.1 KiB
Go
43 lines
1.1 KiB
Go
// Package encrypt
|
|
// @Link https://github.com/bufanyun/hotgo
|
|
// @Copyright Copyright (c) 2023 HotGo CLI
|
|
// @Author Ms <133814250@qq.com>
|
|
// @License https://github.com/bufanyun/hotgo/blob/master/LICENSE
|
|
//
|
|
package encrypt
|
|
|
|
import (
|
|
"encoding/base64"
|
|
"github.com/forgoer/openssl"
|
|
)
|
|
|
|
// AesECBEncrypt 加密
|
|
func AesECBEncrypt(src, key []byte) (dst []byte, err error) {
|
|
return openssl.AesECBEncrypt(src, key, openssl.PKCS7_PADDING)
|
|
}
|
|
|
|
// AesECBDecrypt 解密
|
|
func AesECBDecrypt(src, key []byte) (dst []byte, err error) {
|
|
return openssl.AesECBDecrypt(src, key, openssl.PKCS7_PADDING)
|
|
}
|
|
|
|
// MustAesECBEncryptToString
|
|
// Return the encryption result directly. Panic error
|
|
func MustAesECBEncryptToString(bytCipher, key string) string {
|
|
dst, err := AesECBEncrypt([]byte(bytCipher), []byte(key))
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return base64.StdEncoding.EncodeToString(dst)
|
|
}
|
|
|
|
// MustAesECBDecryptToString
|
|
// Directly return decryption result, panic error
|
|
func MustAesECBDecryptToString(bytCipher, key string) string {
|
|
dst, err := AesECBDecrypt([]byte(bytCipher), []byte(key))
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return string(dst)
|
|
}
|