上网冲浪看到个基于零宽字符和摩斯电码的隐藏文本加密,感觉挺有意思,可以用作文章水印等。其实用简单的base3就可以实现全字符加密,于是叫GPT写了个base3。
Demo
Base3代码(AI生成)
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
| class Base3Converter { constructor(chars = ['0', '1', '2']) { if (chars.length !== 3 || new Set(chars).size !== 3) { throw new Error('Invalid character set. Requires 3 unique characters.'); } this.chars = chars; this.charMap = new Map(chars.map((c, i) => [c, i])); }
encrypt(str) { const encoder = new TextEncoder(); const bytes = encoder.encode(str); let result = ''; for (const byte of bytes) { const triStr = byte.toString(3).padStart(6, '0'); result += [...triStr].map(n => this.chars[parseInt(n, 10)]).join(''); } return result; }
decrypt(encodedStr) { if (encodedStr.length % 6 !== 0) { throw new Error('Invalid encoded string length'); } const invalidChars = [...encodedStr].filter(c => !this.charMap.has(c)); if (invalidChars.length > 0) { throw new Error(`Invalid characters detected: ${invalidChars.join(', ')}`); }
const numStr = [...encodedStr].map(c => this.charMap.get(c)).join(''); const bytes = new Uint8Array(numStr.length / 6);
for (let i = 0; i < numStr.length; i += 6) { const triGroup = numStr.substr(i, 6); const byteValue = parseInt(triGroup, 3); if (byteValue > 255 || byteValue < 0) { throw new Error(`Value out of byte range: ${byteValue}`); } bytes[i/6] = byteValue; }
return new TextDecoder().decode(bytes); } }
|
Usage:
1 2 3
| const base3 = new Base3Converter(['\u200b', '\u200c', '\u200d']); let enctext = base3.encrypt('mypwd'); let dectext = base3.decrypt(enctext);
|
零宽字符介绍
常见的零宽字符包括零宽度空格符(U+200B)、零宽度非断空格符(U+FEFF)、零宽度连字符(U+200D)、零宽度断字符(U+200C)、左至右符(U+200E)和右至左符(U+200F)等。