Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion csrf/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,15 @@ const koaBody = require('koa-body');
const session = require('koa-session');
const CSRF = require('koa-csrf');
const router = require('koa-router')();
const Keygrip = require('keygrip');

const app = module.exports = new Koa();

/**
* csrf need session
*/

app.keys = ['session key', 'csrf example'];
app.keys = new Keygrip(['insert 64 bytes random string', 'insert another 64 bytes random string'], 'sha512');
app.use(session(app));
app.use(koaBody());

Expand Down
3 changes: 2 additions & 1 deletion flash-messages/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@
const Koa = require('koa');
const rawBody = require('raw-body');
const session = require('koa-session');
const Keygrip = require('keygrip');

const app = module.exports = new Koa();

// required for signed cookie sessions
app.keys = ['key1', 'key2'];
app.keys = new Keygrip(['insert 64 bytes random string', 'insert another 64 bytes random string'], 'sha512');
app.use(session(app));

app.use(async function(ctx, next) {
Expand Down