mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-17 17:11:23 +00:00
43 lines
871 B
C
43 lines
871 B
C
|
/*
|
||
|
* Copyright (c) 2011-2013 by naehrwert
|
||
|
* This file is released under the GPLv2.
|
||
|
*/
|
||
|
|
||
|
#ifndef _NP_H_
|
||
|
#define _NP_H_
|
||
|
|
||
|
#include "types.h"
|
||
|
#include "sce.h"
|
||
|
|
||
|
/*! NPDRM config. */
|
||
|
typedef struct _npdrm_config
|
||
|
{
|
||
|
/*! License type. */
|
||
|
scetool::u32 license_type;
|
||
|
/*! Application type. */
|
||
|
scetool::u32 app_type;
|
||
|
/*! klicensee. */
|
||
|
scetool::u8 *klicensee;
|
||
|
/*! Content ID. */
|
||
|
scetool::u8 content_id[0x30];
|
||
|
/*! Real file name. */
|
||
|
scetool::s8 *real_fname;
|
||
|
} npdrm_config_t;
|
||
|
|
||
|
/*! Set klicensee. */
|
||
|
void np_set_klicensee(scetool::u8 *klicensee);
|
||
|
|
||
|
/*! Remove NPDRM layer. */
|
||
|
BOOL np_decrypt_npdrm(sce_buffer_ctxt_t *ctxt);
|
||
|
|
||
|
/*! Add NPDRM layer. */
|
||
|
BOOL np_encrypt_npdrm(sce_buffer_ctxt_t *ctxt);
|
||
|
|
||
|
/*! Create NPDRM control info. */
|
||
|
BOOL np_create_ci(npdrm_config_t *npconf, ci_data_npdrm_t *cinp);
|
||
|
|
||
|
/*! Add NP signature to file. */
|
||
|
BOOL np_sign_file(scetool::s8 *fname);
|
||
|
|
||
|
#endif
|