Giter Club home page Giter Club logo

Comments (6)

zhbzhbzhbz avatar zhbzhbzhbz commented on July 28, 2024 3

But when I'm using ECB mode, this error occurs too.
And in Java, the bytes array is not limited to 16*N bytes.

from aes-js.

ricmoo avatar ricmoo commented on July 28, 2024

CBC Operates against blocks, so the data length must be a multiple of 16.

See the CBC section here: https://en.m.wikipedia.org/wiki/Block_cipher_mode_of_operation

Hope this helps. :)

from aes-js.

fxqy avatar fxqy commented on July 28, 2024

How to solve this problem, I also encountered this pit

from aes-js.

fxqy avatar fxqy commented on July 28, 2024

I don't know how to use it gracefully.Please help me write a better code.
------------------------------------------My code--------------------------------------------
function aesEcpt(text, pwd) {
var shp = sha256_digest(pwd);
var key = [];
var iv = [];
for (var i = 0; i < 32; i++) {
var itm = shp.charCodeAt(i);
if (i < 16)
key.push(itm);
else
iv.push(itm);
}
var textBytes = aesjs.utils.utf8.toBytes(text);
var aesCbc = new aesjs.ModeOfOperation.cbc(key, iv);
var encryptedBytes = aesCbc.encrypt(textBytes);
var encryptedHex = aesjs.utils.hex.fromBytes(encryptedBytes);
return encryptedHex;
}
function aesDcpt(text, pwd) {
var shp = sha256_digest(pwd);
var key = [];
var iv = [];
for (var i = 0; i < 32; i++) {
var itm = shp.charCodeAt(i);
if (i < 16)
key.push(itm);
else
iv.push(itm);
}
var encryptedBytes = aesjs.utils.hex.toBytes(text);
var aesCbc = new aesjs.ModeOfOperation.cbc(key, iv);
var decryptedBytes = aesCbc.decrypt(encryptedBytes);
var decryptedText = aesjs.utils.utf8.fromBytes(decryptedBytes);
return decryptedText;
}

from aes-js.

RokerHRO avatar RokerHRO commented on July 28, 2024

Perhaps Cipher Text Stealing should be implemented in CBC mode, to support arbitrary plaintext lengths:

https://en.wikipedia.org/wiki/Ciphertext_stealing

from aes-js.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.