BlokNet

Encrypted notes, kanban boards, and similar tasks with AI support

Encrypted Note
Send and share your work content without fear of leaks. Everything is encrypted with AES-256.
Board Block
A similar workflow to boards. Everything is encrypted with AES-256.
Your Voice
Discussions, comments, exchange of opinions. It’s encrypted, so don’t worry.
AI Assistant
Use artificial intelligence for text analysis and generation.

Choose a function

Client-side encryption. With our service, you can flexibly configure and manage the encryption process without relying on third-party tools.

encryption.js — AES-256
// Пример кода на Node.js
// Connect the built-in 'crypto' module
const crypto = require('crypto');

// The key and IV must be protected
const key = crypto.randomBytes(32); // 256 бит
const iv  = crypto.randomBytes(16); // 128 бит

function encrypt(text) {
  let cipher = crypto.createCipheriv('aes-256-cbc', key, iv);
  let encrypted = cipher.update(text, 'utf8', 'hex');
  encrypted += cipher.final('hex');
  return encrypted;
}

function decrypt(encryptedText) {
  let decipher = crypto.createDecipheriv('aes-256-cbc', key, iv);
  let decrypted = decipher.update(encryptedText, 'hex', 'utf8');
  decrypted += decipher.final('utf8');
  return decrypted;
}
Configure encryption