• RSAUtil 前端 JavaScript JSEncrypt 实现 RSA (长文本)加密解密


    文章归档https://www.yuque.com/u27599042/coding_star/cl4dl599pdmtllw1

    依赖

    1. import JSEncrypt from ‘jsencrypt’
    pnpm i jsencrypt
    
    • 1
    1. import {stringIsNull} from “@/utils/string_utils.js”:https://www.yuque.com/u27599042/coding_star/slncupw7un3ce7cb
    2. import {isNumber} from “@/utils/number_utils.js”:https://www.yuque.com/u27599042/coding_star/tuwmm3ghf5lgo4bw

    导入依赖

    import JSEncrypt from 'jsencrypt'
    import {stringIsNull} from "@/utils/string_utils.js"
    import {isNumber} from "@/utils/number_utils.js"
    
    • 1
    • 2
    • 3

    内部变量

    /**
     * RSA 加密算法获取密钥对中的公钥使用的 key
     *
     * @type {string}
     */
    export const PUBLIC_KEY = 'RSAPublicKey'
    
    /**
     * RSA 加密算法获取密钥对中的密钥使用的 key
     *
     * @type {string}
     */
    export const PRIVATE_KEY = 'RSAPrivateKey'
    
    /**
     * RSA 密钥对的 bit 数(密钥对的长度)。
     * 常用 1024、2048,密钥对的 bit 数,越大越安全,但是越大对服务器的消耗越大
     *
     * @type {number}
     */
    let keySize = 1024
    
    /**
     * keySize bit 数下的 RSA 密钥对所能够加密的最大明文大小。
     * RSA 算法一次能加密的明文长度与密钥长度(RSA 密钥对的 bit 数)成正比,
     * 默认情况下,Padding 方式为 OPENSSL_PKCS1_PADDING,RSA 算法会使
     * 用 11 字节的长度用于填充,所以默认情况下,RSA 所能够加密的最大明文大
     * 小为 (keySize / 8 - 11) byte
     *
     * @type {number}
     */
    let maxEncryptPlainTextLen = 117
    
    /**
     * keySize bit 数下的 RSA 密钥对所能够解密的最大密文大小。
     * (keySize / 8) byte
     *
     * @type {number}
     */
    let maxDecryptCipherTextLen = 128
    
    /**
     * 密钥长度为 1024 bit 下,通过公钥生成的密文字符串的长度
     *
     * @type {number}
     */
    let cipherTextStrLen = 172
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47

    设置 RSA 密钥对的 bit 数

    /**
     * 为 RSA 密钥对的 bit 数赋值,同时重新计算 keySize bit 数下的
     * RSA 密钥对所能够加密的最大明文大小、所能够解密的最大密文大小
     *
     * @param size RSA 密钥对的 bit 数
     */
    export function setKeySize(size) {
        if (!isNumber(size) || size <= 0) {
            throw new TypeError("参数 {size} 需要是大于 0 的整数")
        }
        keySize = size
        maxEncryptPlainTextLen = keySize / 8 - 11
        maxDecryptCipherTextLen = keySize / 8
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14

    获取指定字符的 UTF8 字节大小

    /**
     * 获取指定字符的 UTF8 字节大小
     * 代码来源: https://blog.csdn.net/csdn_yuan_/article/details/107428744
     *
     * @param charCode 字符编码
     * @return {number} 指定字符的 UTF8 字节大小
     */
    export function getCharByteSizeUTF8(charCode) {
        if (!isNumber(charCode) || charCode < 0) {
            throw new TypeError("参数 {charCode} 需要是大于 0 的整数")
        }
        //字符代码在000000 – 00007F之间的,用一个字节编码
        if (charCode <= 0x007f) {
            return 1
        }
        //000080 – 0007FF之间的字符用两个字节
        else if (charCode <= 0x07ff) {
            return 2
        }
        //000800 – 00D7FF 和 00E000 – 00FFFF之间的用三个字节,注: Unicode在范围 D800-DFFF 中不存在任何字符
        else if (charCode <= 0xffff) {
            return 3
        }
        //010000 – 10FFFF之间的用4个字节
        else {
            return 4
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28

    获取字符串的 UTF8 字节长度

    /**
     * 获取字符串的 UTF8 字节长度
     * 代码来源: https://blog.csdn.net/csdn_yuan_/article/details/107428744
     *
     * @param str 字符串
     * @returns {number} 字符串的 UTF8 字节长度
     */
    export function getStrByteLenUTF8(str) {
        if (stringIsNull(str)) {
            throw new TypeError("参数 {str} 需要非空字符串")
        }
        // 获取字符串的字符长度
        const strLen = str.length
        // 保存字符串的字节长度
        let strByteLen = 0
        // 遍历判断字符串中的每个字符,统计字符串的 UTF8 字节长度
        for (let i = 0; i < strLen; i++) {
            // 获取当前遍历字符的编码
            let charCode = str.charCodeAt(i);
            // 获取并记录当前遍历字符的 UTF8 字节大小
            strByteLen += getCharByteSizeUTF8(charCode)
        }
        return strByteLen
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24

    获取字符串的 UTF8 字节长度, 同时获取按照指定的子字符串字节长度划分的子字符串数组

    /**
     * 获取字符串的 UTF8 字节长度,同时获取按照指定的子字符串字节长度划分的子字符串数组
     * 代码参考: https://blog.csdn.net/csdn_yuan_/article/details/107428744
     *
     * @param str 字符串
     * @param subStrByteLen 子字符串字节长度
     * @return {[]} 按照指定的子字符串字节长度划分的子字符串数组
     */
    export function getStrByteLenUTF8AndSubStrs(str, subStrByteLen) {
        if (stringIsNull(str)) {
            throw new TypeError("参数 {str} 需要非空字符串")
        }
        if (!isNumber(subStrByteLen) || subStrByteLen <= 0) {
            throw new TypeError("参数 {subStrByteLen} 需要是大于 0 的整数")
        }
        // 获取字符串的字符长度
        const strLen = str.length
        // 保存字符串的字节长度
        let strByteLen = 0
        // 记录上一次分隔的字符串的位置
        let preIdx = 0;
        // 记录当前子字符串的字节大小
        let subStrByteSize = 0;
        // 记录子字符串
        const subStrs = []
        // 遍历判断字符串中的每个字符,统计字符串的 UTF8 字节长度
        for (let i = 0; i < strLen; i++) {
            // 获取当前遍历字符的编码
            let charCode = str.charCodeAt(i);
            // 获取并记录当前遍历字符的 UTF8 字节大小
            let charByteSizeUTF8 = getCharByteSizeUTF8(charCode)
            strByteLen += charByteSizeUTF8
            // 当前子字符串的字节大小
            subStrByteSize += charByteSizeUTF8
            // 子字符串达到切割长度
            if (subStrByteSize > subStrByteLen) {
                // 当前子字符串加入返回结果数组中
                subStrs.push(str.substring(preIdx, i))
                // 更新数据
                preIdx = i
                subStrByteSize = charByteSizeUTF8
            }
        }
        // 如果还有子字符串还为加入返回结果数组中
        if (subStrByteSize > 0) {
            subStrs.push(str.substring(preIdx))
        }
        return {
            strByteLen,
            subStrs
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52

    使用公钥对明文进行加密(支持长文本)

    /**
     * 使用公钥对明文进行加密(支持长文本)
     *
     * @param publicKey 公钥
     * @param plainText 明文
     * @returns {string} 明文加密后的密文
     */
    export function encryptByPublicKey(publicKey, plainText) {
        if (stringIsNull(publicKey) || stringIsNull(plainText)) {
            throw new TypeError("参数 {publicKey} {plainText} 需要非空字符串")
        }
        // 获取明文字符串的字节大小和根据指定字节大小划分的子字符串数组
        const { strByteLen: plainTextByteSize, subStrs: plainTextSubStrArr } = getStrByteLenUTF8AndSubStrs(
            plainText,
            maxEncryptPlainTextLen
        )
        // 明文加密后的完整密文
        let cipherText = ""
        // 对明文进行分段加密
        plainTextSubStrArr.forEach(subStr => {
            // 获取加密解密器
            const encryptor = new JSEncrypt()
            // 设置公钥
            encryptor.setPublicKey(publicKey)
            // 加密
            cipherText += encryptor.encrypt(subStr)
        })
        return cipherText
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29

    使用私钥对密文进行解密(支持长文本)

    注意: 此方法只适用于使用和上述加密方法逻辑相同的加密处理得到的密文的解密

    /**
     * 使用私钥对密文进行解密(支持长文本)
     * 注意: 此方法只适用于使用和上述加密方法逻辑相同的加密处理得到的密文的解密
     *
     * @param privateKey 密钥
     * @param cipherText 密文
     * @return {string} 密文解密后的明文
     */
    export function decryptByPrivateKey(privateKey, cipherText) {
        if (stringIsNull(privateKey) || stringIsNull(cipherText)) {
            throw new TypeError("参数 {privateKey} {cipherText} 需要非空字符串")
        }
        // 获取密文的字符长度
        let cipherTextLen = cipherText.length
        // 计算分段解密的次数, cipherTextStrLen 每段密文长度
        let decryptCount = cipherTextLen / cipherTextStrLen
        // 解密后的完整明文
        let plainText = ""
        // 对密文进行分段解密
        for (let i = 0; i < decryptCount; i++) {
            // 分段密文距离开始位置的偏移量
            let offSet = i * cipherTextStrLen
            let subCipherText = cipherText.substring(offSet, offSet + cipherTextLen)
            // 加密解密器
            const encryptor = new JSEncrypt()
            // 设置私钥
            encryptor.setPrivateKey(privateKey)
            // 解密
            plainText += encryptor.decrypt(subCipherText)
        }
        return plainText
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32

    与 RSAUtil 搭配的 Java 后端 RSAUtilInteractiveWithFrontEnd

    完整源码

    import JSEncrypt from 'jsencrypt'
    import {stringIsNull} from "@/utils/string_utils.js"
    import {isNumber} from "@/utils/number_utils.js"
    
    /**
     * RSA 加密算法获取密钥对中的公钥使用的 key
     *
     * @type {string}
     */
    export const PUBLIC_KEY = 'RSAPublicKey'
    
    /**
     * RSA 加密算法获取密钥对中的密钥使用的 key
     *
     * @type {string}
     */
    export const PRIVATE_KEY = 'RSAPrivateKey'
    
    /**
     * RSA 密钥对的 bit 数(密钥对的长度)。
     * 常用 1024、2048,密钥对的 bit 数,越大越安全,但是越大对服务器的消耗越大
     *
     * @type {number}
     */
    let keySize = 1024
    
    /**
     * keySize bit 数下的 RSA 密钥对所能够加密的最大明文大小。
     * RSA 算法一次能加密的明文长度与密钥长度(RSA 密钥对的 bit 数)成正比,
     * 默认情况下,Padding 方式为 OPENSSL_PKCS1_PADDING,RSA 算法会使
     * 用 11 字节的长度用于填充,所以默认情况下,RSA 所能够加密的最大明文大
     * 小为 (keySize / 8 - 11) byte
     *
     * @type {number}
     */
    let maxEncryptPlainTextLen = 117
    
    /**
     * keySize bit 数下的 RSA 密钥对所能够解密的最大密文大小。
     * (keySize / 8) byte
     *
     * @type {number}
     */
    let maxDecryptCipherTextLen = 128
    
    /**
     * 密钥长度为 1024 bit 下,通过公钥生成的密文字符串的长度
     *
     * @type {number}
     */
    let cipherTextStrLen = 172
    
    /**
     * 为 RSA 密钥对的 bit 数赋值,同时重新计算 keySize bit 数下的
     * RSA 密钥对所能够加密的最大明文大小、所能够解密的最大密文大小
     *
     * @param size RSA 密钥对的 bit 数
     */
    export function setKeySize(size) {
        if (!isNumber(size) || size <= 0) {
            throw new TypeError("参数 {size} 需要是大于 0 的整数")
        }
        keySize = size
        maxEncryptPlainTextLen = keySize / 8 - 11
        maxDecryptCipherTextLen = keySize / 8
    }
    
    /**
     * 获取指定字符的 UTF8 字节大小
     * 代码来源: https://blog.csdn.net/csdn_yuan_/article/details/107428744
     *
     * @param charCode 字符编码
     * @return {number} 指定字符的 UTF8 字节大小
     */
    export function getCharByteSizeUTF8(charCode) {
        if (!isNumber(charCode) || charCode < 0) {
            throw new TypeError("参数 {charCode} 需要是大于 0 的整数")
        }
        //字符代码在000000 – 00007F之间的,用一个字节编码
        if (charCode <= 0x007f) {
            return 1
        }
        //000080 – 0007FF之间的字符用两个字节
        else if (charCode <= 0x07ff) {
            return 2
        }
        //000800 – 00D7FF 和 00E000 – 00FFFF之间的用三个字节,注: Unicode在范围 D800-DFFF 中不存在任何字符
        else if (charCode <= 0xffff) {
            return 3
        }
        //010000 – 10FFFF之间的用4个字节
        else {
            return 4
        }
    }
    
    /**
     * 获取字符串的 UTF8 字节长度
     * 代码来源: https://blog.csdn.net/csdn_yuan_/article/details/107428744
     *
     * @param str 字符串
     * @returns {number} 字符串的 UTF8 字节长度
     */
    export function getStrByteLenUTF8(str) {
        if (stringIsNull(str)) {
            throw new TypeError("参数 {str} 需要非空字符串")
        }
        // 获取字符串的字符长度
        const strLen = str.length
        // 保存字符串的字节长度
        let strByteLen = 0
        // 遍历判断字符串中的每个字符,统计字符串的 UTF8 字节长度
        for (let i = 0; i < strLen; i++) {
            // 获取当前遍历字符的编码
            let charCode = str.charCodeAt(i);
            // 获取并记录当前遍历字符的 UTF8 字节大小
            strByteLen += getCharByteSizeUTF8(charCode)
        }
        return strByteLen
    }
    
    /**
     * 获取字符串的 UTF8 字节长度,同时获取按照指定的子字符串字节长度划分的子字符串数组
     * 代码参考: https://blog.csdn.net/csdn_yuan_/article/details/107428744
     *
     * @param str 字符串
     * @param subStrByteLen 子字符串字节长度
     * @return {[]} 按照指定的子字符串字节长度划分的子字符串数组
     */
    export function getStrByteLenUTF8AndSubStrs(str, subStrByteLen) {
        if (stringIsNull(str)) {
            throw new TypeError("参数 {str} 需要非空字符串")
        }
        if (!isNumber(subStrByteLen) || subStrByteLen <= 0) {
            throw new TypeError("参数 {subStrByteLen} 需要是大于 0 的整数")
        }
        // 获取字符串的字符长度
        const strLen = str.length
        // 保存字符串的字节长度
        let strByteLen = 0
        // 记录上一次分隔的字符串的位置
        let preIdx = 0;
        // 记录当前子字符串的字节大小
        let subStrByteSize = 0;
        // 记录子字符串
        const subStrs = []
        // 遍历判断字符串中的每个字符,统计字符串的 UTF8 字节长度
        for (let i = 0; i < strLen; i++) {
            // 获取当前遍历字符的编码
            let charCode = str.charCodeAt(i);
            // 获取并记录当前遍历字符的 UTF8 字节大小
            let charByteSizeUTF8 = getCharByteSizeUTF8(charCode)
            strByteLen += charByteSizeUTF8
            // 当前子字符串的字节大小
            subStrByteSize += charByteSizeUTF8
            // 子字符串达到切割长度
            if (subStrByteSize > subStrByteLen) {
                // 当前子字符串加入返回结果数组中
                subStrs.push(str.substring(preIdx, i))
                // 更新数据
                preIdx = i
                subStrByteSize = charByteSizeUTF8
            }
        }
        // 如果还有子字符串还为加入返回结果数组中
        if (subStrByteSize > 0) {
            subStrs.push(str.substring(preIdx))
        }
        return {
            strByteLen,
            subStrs
        }
    }
    
    /**
     * 使用公钥对明文进行加密(支持长文本)
     *
     * @param publicKey 公钥
     * @param plainText 明文
     * @returns {string} 明文加密后的密文
     */
    export function encryptByPublicKey(publicKey, plainText) {
        if (stringIsNull(publicKey) || stringIsNull(plainText)) {
            throw new TypeError("参数 {publicKey} {plainText} 需要非空字符串")
        }
        // 获取明文字符串的字节大小和根据指定字节大小划分的子字符串数组
        const { strByteLen: plainTextByteSize, subStrs: plainTextSubStrArr } = getStrByteLenUTF8AndSubStrs(
            plainText,
            maxEncryptPlainTextLen
        )
        // 明文加密后的完整密文
        let cipherText = ""
        // 对明文进行分段加密
        plainTextSubStrArr.forEach(subStr => {
            // 获取加密解密器
            const encryptor = new JSEncrypt()
            // 设置公钥
            encryptor.setPublicKey(publicKey)
            // 加密
            cipherText += encryptor.encrypt(subStr)
        })
        return cipherText
    }
    
    /**
     * 使用私钥对密文进行解密(支持长文本)
     * 注意: 此方法只适用于使用和上述加密方法逻辑相同的加密处理得到的密文的解密
     *
     * @param privateKey 密钥
     * @param cipherText 密文
     * @return {string} 密文解密后的明文
     */
    export function decryptByPrivateKey(privateKey, cipherText) {
        if (stringIsNull(privateKey) || stringIsNull(cipherText)) {
            throw new TypeError("参数 {privateKey} {cipherText} 需要非空字符串")
        }
        // 获取密文的字符长度
        let cipherTextLen = cipherText.length
        // 计算分段解密的次数, cipherTextStrLen 每段密文长度
        let decryptCount = cipherTextLen / cipherTextStrLen
        // 解密后的完整明文
        let plainText = ""
        // 对密文进行分段解密
        for (let i = 0; i < decryptCount; i++) {
            // 分段密文距离开始位置的偏移量
            let offSet = i * cipherTextStrLen
            let subCipherText = cipherText.substring(offSet, offSet + cipherTextLen)
            // 加密解密器
            const encryptor = new JSEncrypt()
            // 设置私钥
            encryptor.setPrivateKey(privateKey)
            // 解密
            plainText += encryptor.decrypt(subCipherText)
        }
        return plainText
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
    • 172
    • 173
    • 174
    • 175
    • 176
    • 177
    • 178
    • 179
    • 180
    • 181
    • 182
    • 183
    • 184
    • 185
    • 186
    • 187
    • 188
    • 189
    • 190
    • 191
    • 192
    • 193
    • 194
    • 195
    • 196
    • 197
    • 198
    • 199
    • 200
    • 201
    • 202
    • 203
    • 204
    • 205
    • 206
    • 207
    • 208
    • 209
    • 210
    • 211
    • 212
    • 213
    • 214
    • 215
    • 216
    • 217
    • 218
    • 219
    • 220
    • 221
    • 222
    • 223
    • 224
    • 225
    • 226
    • 227
    • 228
    • 229
    • 230
    • 231
    • 232
    • 233
    • 234
    • 235
    • 236
  • 相关阅读:
    【Docker】ubuntu20.04 X86机器搭建NVIDIA ARM64 TX2的Docker镜像
    机器学习之旅-从Python 开始
    cmd进程简单操作指令
    Java—Double类型进行加减乘除出错(精度)问题
    C++设计模式-设计模式简述
    【软考】系统集成项目管理工程师(三)信息系统集成专业技术知识②
    初步上手Git软件及GitHub平台:基本操作方法
    大模型训练为什么用A100不用4090
    系统架构和问题定位
    QT web 开发 - video -- 笔记
  • 原文地址:https://blog.csdn.net/m0_53022813/article/details/134062201