This commit is contained in:
Rutra
2026-05-13 11:50:22 +02:00
commit 2068229f89
128 changed files with 9215 additions and 0 deletions

13
config/encryption.js Normal file
View File

@@ -0,0 +1,13 @@
import env from '#start/env';
import { defineConfig, drivers } from '@adonisjs/core/encryption';
const encryptionConfig = defineConfig({
default: 'gcm',
list: {
gcm: drivers.aes256gcm({
keys: [env.get('APP_KEY')],
id: 'gcm',
}),
},
});
export default encryptionConfig;
//# sourceMappingURL=encryption.js.map