1

I'm using the SJCL library to encrypt/decrypt messages. The question I have is that I don't know which is used AES or SHA256

Here is my code:

var h = sjcl.codec.hex, count = 2048 ;
salt = h.fromBits(sjcl.random.randomWords('10','0'));
var key = h.fromBits( sjcl.misc.pbkdf2(somePassword, h.toBits(salt), count) ) ;

Next I can encrypt/decrypt like

var encMessage = sjcl.encrypt(key, message) ;
sjcl.decrypt(key, encMessage) ;

AES or SHA256 or something else ?

Duncan Jones
  • 67,400
  • 29
  • 193
  • 254
Jeanluca Scaljeri
  • 26,343
  • 56
  • 205
  • 333

3 Answers3

6

SHA256 and AES are 2 different types of algorithms.

SHA256 is a cryptography hash function: http://en.wikipedia.org/wiki/SHA-2

AES is a encryption algorithm: http://en.wikipedia.org/wiki/Advanced_Encryption_Standard

So in your case when using encryption you are in fact using AES.

wlk
  • 5,695
  • 6
  • 54
  • 72
5

pbkdf2 for key generation is using HMAC with SHA256. But the default encryption key size with sjcl for AES-CCM is only 128 bits. If you want AES-CCM-256, I think you need to do the following, you also don't have to call pbkdf2 directly.

var encMessage =sjcl.encrypt(somePassword,message,{count:2048,salt:salt,ks:256});
jbtule
  • 31,383
  • 12
  • 95
  • 128
1

Based on a cursory inspection of the source, I'd suggest it is using AES in CCM mode.

The SJCL homepage explains the cryptographic techniques used, although admittedly the per-function documentation does not explain it at all.

Duncan Jones
  • 67,400
  • 29
  • 193
  • 254