0sir1ss / Carbon

[UNMAINTAINED] A Python script to obfuscate and protect your code by renaming classes, functions, variables and remove comments and docstrings.
MIT License
93 stars 12 forks source link

Improperly renames function parameters #3

Open deeplearnerali opened 2 years ago

deeplearnerali commented 2 years ago

We have the original code here:

def add(x: int, y: int) -> None: print(f"{x:,} + {y:,} = {(x+y):,}") add(10, 10)

after obfuscation

` def lIIlllIIIlIllI(llIIlllIllIl: int, IllIIIlIllIl: int) -> None: print(f"{x:,} + {y:,} = {(llIIlllIllIl+IllIIIlIllIl):,}") lIIlllIIIlIllI(10, 10)

`

YumYummity commented 1 year ago

looks as expected?