Fix bin/publish: use correct .env path for rspade_system Fix bin/publish script: prevent grep exit code 1 from terminating script 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
25 lines
301 B
JavaScript
Executable File
25 lines
301 B
JavaScript
Executable File
exports['des-ecb'] = {
|
|
key: 8,
|
|
iv: 0
|
|
}
|
|
exports['des-cbc'] = exports.des = {
|
|
key: 8,
|
|
iv: 8
|
|
}
|
|
exports['des-ede3-cbc'] = exports.des3 = {
|
|
key: 24,
|
|
iv: 8
|
|
}
|
|
exports['des-ede3'] = {
|
|
key: 24,
|
|
iv: 0
|
|
}
|
|
exports['des-ede-cbc'] = {
|
|
key: 16,
|
|
iv: 8
|
|
}
|
|
exports['des-ede'] = {
|
|
key: 16,
|
|
iv: 0
|
|
}
|