├── .gitignore ├── BAHardCodeEncoder.py ├── Pipfile ├── README.md ├── Service ├── BAExceptionHelper.py ├── BAFileDecoder.py ├── BAFileEncoder.py └── __init__.py ├── Utils ├── BAEncryptUtil.py ├── BAErrorUtil.py ├── BAFileUtil.py └── __init__.py └── oc-class ├── GTM ├── GTMBase64.h ├── GTMBase64.m └── GTMDefines.h ├── NSString+BAHCCategory.h └── NSString+BAHCCategory.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenArvin/BAHardCodeEncoder/HEAD/.gitignore -------------------------------------------------------------------------------- /BAHardCodeEncoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenArvin/BAHardCodeEncoder/HEAD/BAHardCodeEncoder.py -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenArvin/BAHardCodeEncoder/HEAD/Pipfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenArvin/BAHardCodeEncoder/HEAD/README.md -------------------------------------------------------------------------------- /Service/BAExceptionHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenArvin/BAHardCodeEncoder/HEAD/Service/BAExceptionHelper.py -------------------------------------------------------------------------------- /Service/BAFileDecoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenArvin/BAHardCodeEncoder/HEAD/Service/BAFileDecoder.py -------------------------------------------------------------------------------- /Service/BAFileEncoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenArvin/BAHardCodeEncoder/HEAD/Service/BAFileEncoder.py -------------------------------------------------------------------------------- /Service/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenArvin/BAHardCodeEncoder/HEAD/Service/__init__.py -------------------------------------------------------------------------------- /Utils/BAEncryptUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenArvin/BAHardCodeEncoder/HEAD/Utils/BAEncryptUtil.py -------------------------------------------------------------------------------- /Utils/BAErrorUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenArvin/BAHardCodeEncoder/HEAD/Utils/BAErrorUtil.py -------------------------------------------------------------------------------- /Utils/BAFileUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenArvin/BAHardCodeEncoder/HEAD/Utils/BAFileUtil.py -------------------------------------------------------------------------------- /Utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenArvin/BAHardCodeEncoder/HEAD/Utils/__init__.py -------------------------------------------------------------------------------- /oc-class/GTM/GTMBase64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenArvin/BAHardCodeEncoder/HEAD/oc-class/GTM/GTMBase64.h -------------------------------------------------------------------------------- /oc-class/GTM/GTMBase64.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenArvin/BAHardCodeEncoder/HEAD/oc-class/GTM/GTMBase64.m -------------------------------------------------------------------------------- /oc-class/GTM/GTMDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenArvin/BAHardCodeEncoder/HEAD/oc-class/GTM/GTMDefines.h -------------------------------------------------------------------------------- /oc-class/NSString+BAHCCategory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenArvin/BAHardCodeEncoder/HEAD/oc-class/NSString+BAHCCategory.h -------------------------------------------------------------------------------- /oc-class/NSString+BAHCCategory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenArvin/BAHardCodeEncoder/HEAD/oc-class/NSString+BAHCCategory.m --------------------------------------------------------------------------------