-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Shane findley patch 6 #2
base: main
Are you sure you want to change the base?
Conversation
87de366
to
4d36593
Compare
const initialization_vector = "X05IGQ5qdBnIqAWD"; // Must be 16 characters | ||
|
||
function encrypt(text){ | ||
const cipher = createCipheriv('aes-256-cbc',Buffer.from(encryption_key), Buffer.from(initialization_vector)) |
Check failure
Code scanning / SonarCloudsquad-3
Encryption algorithms should be used with secure mode and padding scheme
Quality Gate failedFailed conditions See analysis details on SonarCloud Catch issues before they fail your Quality Gate with our IDE extension SonarLint |
4d36593
to
0e4a511
Compare
const initialization_vector = "X05IGQ5qdBnIqAWD"; // Must be 16 characters | ||
|
||
function encrypt(text){ | ||
const cipher = createCipheriv('aes-256-cbc',Buffer.from(encryption_key), Buffer.from(initialization_vector)) |
Check failure
Code scanning / SonarCloudsquad-5
Encryption algorithms should be used with secure mode and padding scheme High test
Quality Gate failedFailed conditions See analysis details on SonarCloud Catch issues before they fail your Quality Gate with our IDE extension SonarLint |
No description provided.