cbc.init(false, new KeyParameter(key));
//translate bytes
int nextBlockSize;
for(int i=0;i<ELength;i=i+nextBlockSize){
cbc.processBlock(rawValue, i, returnKey, i);
nextBlockSize=cbc.getBlockSize();
}
}catch(Exception e){
throw new PdfSecurityException("Exception "+e.getMessage()+" with v5 encoding");