As far as I know it is not easily possible.
Looking at the code, the key is immediatly transformed using the S-Box. The result ist stored in this._key, so you could get that result and then use the reverse S-Box to restore rawKey. This should work, but just storing the key in a variable is of course way simpler.
As far as I know it is not easily possible. Looking at the code, the key is immediatly transformed using the S-Box. The result ist stored in
this._key
, so you could get that result and then use the reverse S-Box to restorerawKey
. This should work, but just storing the key in a variable is of course way simpler.