csa.h
资源名称:vlc-1.0.5.zip [点击查看]
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:2k
源码类别:
midi
开发平台:
Unix_Linux
- /*****************************************************************************
- * csa.h
- *****************************************************************************
- * Copyright (C) 2004 Laurent Aimar
- * $Id: 288836607bd9995b0069bfd1600a16d92c8905d8 $
- *
- * Authors: Laurent Aimar <fenrir@via.ecp.fr>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
- *****************************************************************************/
- #ifndef _CSA_H
- #define _CSA_H 1
- typedef struct csa_t csa_t;
- #define csa_New __csa_New
- #define csa_Delete __csa_Delete
- #define csa_SetCW __csa_SetCW
- #define csa_UseKey __csa_UseKey
- #define csa_Decrypt __csa_decrypt
- #define csa_Encrypt __csa_encrypt
- csa_t *csa_New( void );
- void csa_Delete( csa_t * );
- int csa_SetCW( vlc_object_t *p_caller, csa_t *c, char *psz_ck, bool odd );
- int csa_UseKey( vlc_object_t *p_caller, csa_t *, bool use_odd );
- void csa_Decrypt( csa_t *, uint8_t *pkt, int i_pkt_size );
- void csa_Encrypt( csa_t *, uint8_t *pkt, int i_pkt_size );
- #endif /* _CSA_H */