├── .gitattributes ├── .gitignore ├── .vs └── OrbisPkg │ └── v15 │ └── .suo ├── CONTRIBUTING.md ├── LICENSE.md ├── OrbisPkg.sln ├── OrbisPkg ├── App.config ├── Classes │ ├── Archive.cs │ ├── CNT │ │ ├── Package.cs │ │ └── PlaystationFileSystem.cs │ ├── Entropy.cs │ └── MT19937.cs ├── Forms │ ├── frmPasscode.Designer.cs │ ├── frmPasscode.cs │ ├── frmPasscode.resx │ ├── frmProperties.Designer.cs │ ├── frmProperties.cs │ └── frmProperties.resx ├── IO │ └── EndianIO.cs ├── Main.Designer.cs ├── Main.cs ├── Main.resx ├── OrbisPkg.csproj ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── CD_16x.png │ ├── CloseSolution_16xMD.png │ ├── DetailsIconsView_16x.png │ ├── FolderOpen_16x.png │ ├── Folder_16x.png │ ├── LargeIconsView_16x.png │ ├── ListIconsView_16x.png │ ├── NewFile_16x.png │ ├── OpenFolder_16x.png │ ├── Property_16x.png │ ├── SaveStatusBar1_16x.png │ └── SmallIconsView_16x.png └── Security │ └── Cryptography │ └── Aes │ ├── Xts.cs │ └── XtsCryptoTransform.cs └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-EyeX32/OrbisPkg/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-EyeX32/OrbisPkg/HEAD/.gitignore -------------------------------------------------------------------------------- /.vs/OrbisPkg/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-EyeX32/OrbisPkg/HEAD/.vs/OrbisPkg/v15/.suo -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-EyeX32/OrbisPkg/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-EyeX32/OrbisPkg/HEAD/LICENSE.md -------------------------------------------------------------------------------- /OrbisPkg.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-EyeX32/OrbisPkg/HEAD/OrbisPkg.sln -------------------------------------------------------------------------------- /OrbisPkg/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-EyeX32/OrbisPkg/HEAD/OrbisPkg/App.config -------------------------------------------------------------------------------- /OrbisPkg/Classes/Archive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-EyeX32/OrbisPkg/HEAD/OrbisPkg/Classes/Archive.cs -------------------------------------------------------------------------------- /OrbisPkg/Classes/CNT/Package.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-EyeX32/OrbisPkg/HEAD/OrbisPkg/Classes/CNT/Package.cs -------------------------------------------------------------------------------- /OrbisPkg/Classes/CNT/PlaystationFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-EyeX32/OrbisPkg/HEAD/OrbisPkg/Classes/CNT/PlaystationFileSystem.cs -------------------------------------------------------------------------------- /OrbisPkg/Classes/Entropy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-EyeX32/OrbisPkg/HEAD/OrbisPkg/Classes/Entropy.cs -------------------------------------------------------------------------------- /OrbisPkg/Classes/MT19937.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-EyeX32/OrbisPkg/HEAD/OrbisPkg/Classes/MT19937.cs -------------------------------------------------------------------------------- /OrbisPkg/Forms/frmPasscode.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-EyeX32/OrbisPkg/HEAD/OrbisPkg/Forms/frmPasscode.Designer.cs -------------------------------------------------------------------------------- /OrbisPkg/Forms/frmPasscode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-EyeX32/OrbisPkg/HEAD/OrbisPkg/Forms/frmPasscode.cs -------------------------------------------------------------------------------- /OrbisPkg/Forms/frmPasscode.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-EyeX32/OrbisPkg/HEAD/OrbisPkg/Forms/frmPasscode.resx -------------------------------------------------------------------------------- /OrbisPkg/Forms/frmProperties.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-EyeX32/OrbisPkg/HEAD/OrbisPkg/Forms/frmProperties.Designer.cs -------------------------------------------------------------------------------- /OrbisPkg/Forms/frmProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-EyeX32/OrbisPkg/HEAD/OrbisPkg/Forms/frmProperties.cs -------------------------------------------------------------------------------- /OrbisPkg/Forms/frmProperties.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-EyeX32/OrbisPkg/HEAD/OrbisPkg/Forms/frmProperties.resx -------------------------------------------------------------------------------- /OrbisPkg/IO/EndianIO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-EyeX32/OrbisPkg/HEAD/OrbisPkg/IO/EndianIO.cs -------------------------------------------------------------------------------- /OrbisPkg/Main.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-EyeX32/OrbisPkg/HEAD/OrbisPkg/Main.Designer.cs -------------------------------------------------------------------------------- /OrbisPkg/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-EyeX32/OrbisPkg/HEAD/OrbisPkg/Main.cs -------------------------------------------------------------------------------- /OrbisPkg/Main.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-EyeX32/OrbisPkg/HEAD/OrbisPkg/Main.resx -------------------------------------------------------------------------------- /OrbisPkg/OrbisPkg.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-EyeX32/OrbisPkg/HEAD/OrbisPkg/OrbisPkg.csproj -------------------------------------------------------------------------------- /OrbisPkg/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-EyeX32/OrbisPkg/HEAD/OrbisPkg/Program.cs -------------------------------------------------------------------------------- /OrbisPkg/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-EyeX32/OrbisPkg/HEAD/OrbisPkg/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OrbisPkg/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-EyeX32/OrbisPkg/HEAD/OrbisPkg/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /OrbisPkg/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-EyeX32/OrbisPkg/HEAD/OrbisPkg/Properties/Resources.resx -------------------------------------------------------------------------------- /OrbisPkg/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-EyeX32/OrbisPkg/HEAD/OrbisPkg/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /OrbisPkg/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-EyeX32/OrbisPkg/HEAD/OrbisPkg/Properties/Settings.settings -------------------------------------------------------------------------------- /OrbisPkg/Resources/CD_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-EyeX32/OrbisPkg/HEAD/OrbisPkg/Resources/CD_16x.png -------------------------------------------------------------------------------- /OrbisPkg/Resources/CloseSolution_16xMD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-EyeX32/OrbisPkg/HEAD/OrbisPkg/Resources/CloseSolution_16xMD.png -------------------------------------------------------------------------------- /OrbisPkg/Resources/DetailsIconsView_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-EyeX32/OrbisPkg/HEAD/OrbisPkg/Resources/DetailsIconsView_16x.png -------------------------------------------------------------------------------- /OrbisPkg/Resources/FolderOpen_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-EyeX32/OrbisPkg/HEAD/OrbisPkg/Resources/FolderOpen_16x.png -------------------------------------------------------------------------------- /OrbisPkg/Resources/Folder_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-EyeX32/OrbisPkg/HEAD/OrbisPkg/Resources/Folder_16x.png -------------------------------------------------------------------------------- /OrbisPkg/Resources/LargeIconsView_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-EyeX32/OrbisPkg/HEAD/OrbisPkg/Resources/LargeIconsView_16x.png -------------------------------------------------------------------------------- /OrbisPkg/Resources/ListIconsView_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-EyeX32/OrbisPkg/HEAD/OrbisPkg/Resources/ListIconsView_16x.png -------------------------------------------------------------------------------- /OrbisPkg/Resources/NewFile_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-EyeX32/OrbisPkg/HEAD/OrbisPkg/Resources/NewFile_16x.png -------------------------------------------------------------------------------- /OrbisPkg/Resources/OpenFolder_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-EyeX32/OrbisPkg/HEAD/OrbisPkg/Resources/OpenFolder_16x.png -------------------------------------------------------------------------------- /OrbisPkg/Resources/Property_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-EyeX32/OrbisPkg/HEAD/OrbisPkg/Resources/Property_16x.png -------------------------------------------------------------------------------- /OrbisPkg/Resources/SaveStatusBar1_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-EyeX32/OrbisPkg/HEAD/OrbisPkg/Resources/SaveStatusBar1_16x.png -------------------------------------------------------------------------------- /OrbisPkg/Resources/SmallIconsView_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-EyeX32/OrbisPkg/HEAD/OrbisPkg/Resources/SmallIconsView_16x.png -------------------------------------------------------------------------------- /OrbisPkg/Security/Cryptography/Aes/Xts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-EyeX32/OrbisPkg/HEAD/OrbisPkg/Security/Cryptography/Aes/Xts.cs -------------------------------------------------------------------------------- /OrbisPkg/Security/Cryptography/Aes/XtsCryptoTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-EyeX32/OrbisPkg/HEAD/OrbisPkg/Security/Cryptography/Aes/XtsCryptoTransform.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-EyeX32/OrbisPkg/HEAD/README.md --------------------------------------------------------------------------------