I have a piece of code for decryption of audio files in Adobe Air/Flex app
var rsaX:ICipher = Crypto.getCipher("rc4", key,Crypto.getPad("pkcs1pad"));
rsaX.decrypt(orgArray);
Please, tell me how to decrypt this algorithm in Java for Android application. Could you please write example of code.