Rotaeno Decrypt Server is an API server decrypting Rotaeno local storage data.
This server is only used for Local File decryption to serve Bots.
- No communication with official server.
- No modification of any purchase content.
- Clone the Repository:
git clone https://github.com/x-spy/rotaeno-decrypt-server.git cd rotaeno-decrypt-server - Install Dependencies
npm install
- Configuration
- Redis
const redisClient = createClient({ username: 'default', // Redis Username password: '***', // Redis Password socket: { // Redis Host Info host: '***', port: 11451, }, });
- TLS
// Private Key File const privateKey = fs.readFileSync( path.join(__dirname, '../cert', 'server.key'), 'utf8' ); // Certificate File const certificate = fs.readFileSync( path.join(__dirname, '../cert', 'server.crt'), 'utf8' );
npm run server