mirror of
https://github.com/langgenius/dify.git
synced 2025-12-19 17:27:16 -05:00
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> Co-authored-by: Joel <iamjoel007@gmail.com> Co-authored-by: -LAN- <laipz8200@outlook.com>
47 lines
1.4 KiB
TypeScript
47 lines
1.4 KiB
TypeScript
/**
|
|
* Field Encoding Utilities
|
|
* Provides Base64 encoding for sensitive fields (password, verification code)
|
|
* during transmission from frontend to backend.
|
|
*
|
|
* Note: This uses Base64 encoding for obfuscation, not cryptographic encryption.
|
|
* Real security relies on HTTPS for transport layer encryption.
|
|
*/
|
|
|
|
/**
|
|
* Encode sensitive field using Base64
|
|
* @param plaintext - The plain text to encode
|
|
* @returns Base64 encoded text
|
|
*/
|
|
export function encryptField(plaintext: string): string {
|
|
try {
|
|
// Base64 encode the plaintext
|
|
// btoa works with ASCII, so we need to handle UTF-8 properly
|
|
const utf8Bytes = new TextEncoder().encode(plaintext)
|
|
const base64 = btoa(String.fromCharCode(...utf8Bytes))
|
|
return base64
|
|
}
|
|
catch (error) {
|
|
console.error('Field encoding failed:', error)
|
|
// If encoding fails, throw error to prevent sending plaintext
|
|
throw new Error('Encoding failed. Please check your input.')
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Encrypt password field for login
|
|
* @param password - Plain password
|
|
* @returns Encrypted password or original if encryption disabled
|
|
*/
|
|
export function encryptPassword(password: string): string {
|
|
return encryptField(password)
|
|
}
|
|
|
|
/**
|
|
* Encrypt verification code for email code login
|
|
* @param code - Plain verification code
|
|
* @returns Encrypted code or original if encryption disabled
|
|
*/
|
|
export function encryptVerificationCode(code: string): string {
|
|
return encryptField(code)
|
|
}
|