master was updated

This commit is contained in:
de4dot 2012-01-19 19:19:08 +01:00
parent 68b78b0081
commit 8c90c7b494
2 changed files with 2 additions and 2 deletions

View File

@ -183,7 +183,7 @@ namespace de4dot.code.deobfuscators.Babel_NET {
if (stringDecrypter.Resource != null)
Log.v("Adding string decrypter. Resource: {0}", Utils.toCsharpString(stringDecrypter.Resource.Name));
staticStringDecrypter.add(stringDecrypter.DecryptMethod, (method, args) => {
staticStringInliner.add(stringDecrypter.DecryptMethod, (method, args) => {
return stringDecrypter.decrypt(args);
});
DeobfuscatedFile.stringDecryptersAdded();

View File

@ -206,7 +206,7 @@ namespace de4dot.code.deobfuscators.Goliath_NET {
}
foreach (var method in stringDecrypter.getMethods()) {
staticStringDecrypter.add(method, (method2, args) => {
staticStringInliner.add(method, (method2, args) => {
return stringDecrypter.decrypt(method2);
});
}