drm_sha1.h

来自「SAMSUNG 5009的源代码」· C头文件 代码 · 共 36 行

H
36
字号
// $Header: /libDrmCommon/src/sha1.h 2     3/22/03 11:24a Quita $
// Copyright (c) 2003 DivXNetworks, Inc. http://www.divxnetworks.com
// All rights reserved.
//
// This software is the confidential and proprietary information of DivxNetworks
// Inc. ("Confidential Information").  You shall not disclose such Confidential
// Information and shall use it only in accordance with the terms of the license
// agreement you entered into with DivXNetworks, Inc.

#ifndef SHA_1_H
#define SHA_1_H


#ifdef __cplusplus
extern "C" {
#endif

//
// sha1GetHash
//
// Gets the SHA1 hash string for
// the given buffer (should be at 
// least a few hundreds bytes long)
//
//

char *sha1GetHash(unsigned char *buffer, 
				  unsigned int length, 
				  unsigned int *outlength);

#ifdef __cplusplus
};
#endif


#endif // SHA_1_H

⌨️ 快捷键说明

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