⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 decrypt.h

📁 psp开发用的所有头文件。包含所有系统API。需要psp-gcc编译器。在www.psp-dev.com上有
💻 H
字号:
/* * PSP Software Development Kit - http://www.pspdev.org * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * * decrypt.h - Declarations for functions in decrypt.c * * Copyright (c) 2005 Jim Paris <jim@jtan.com> * Coypright (c) 2005 psp123 * * $Id: decrypt.h 1562 2005-12-10 20:52:45Z jim $ */#include <pspchnnlsv.h>/* Detect the samegame format and decrypt it.  See main.c for an example.  */int decrypt_file(const char *decrypted_filename,		 const char *encrypted_filename,		 const unsigned char *gamekey);/* Do the actual hardware decryption.   mode is 3 for saves with a cryptkey, or 1 otherwise.   data, alignedLen, and cryptkey must be multiples of 0x10.   cryptkey is NULL if mode == 1.*/int decrypt_data(unsigned int mode, 		 unsigned char *data,		 int *dataLen,		 int *alignedLen,		 unsigned char *cryptkey);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -