I'm trying to get the same result from using cryptojs sha3 method and the php-sha3 library, but the results just dont' seem to match.
An example:
For CryptoJS
var hash = CryptoJS.SHA3("qwerty", { outputLength: 224 }).toString();
gives me d7a12ecec4442f1b31eea5f7d5470f0ca6169463e09d91a147c3b8e8
while with PHP-SHA3
echo sha3("qwerty",224);
gives me 13783bdfa4a63b202d9aa1992eccdd68a9fa5e44539273d8c2b797cd
I am a complete encryption noob, so I'm guessing I'm missing something fundamental about this.