VirtualBox

source: vbox/trunk/src/VBox/Additions/x11/x11include/xorg-server-1.12.0/xsha1.h

最後變更 在這個檔案是 40349,由 vboxsync 提交於 13 年 前

Additions/xorg: support X.Org Server 1.12.

  • 屬性 svn:eol-style 設為 native
檔案大小: 441 位元組
 
1#ifndef XSHA1_H
2#define XSHA1_H
3
4/* Initialize SHA1 computation. Returns NULL on error. */
5void *x_sha1_init(void);
6
7/*
8 * Add some data to be hashed. ctx is the value returned by x_sha1_init()
9 * Returns 0 on error, 1 on success.
10 */
11int x_sha1_update(void *ctx, void *data, int size);
12
13/*
14 * Place the hash in result, and free ctx.
15 * Returns 0 on error, 1 on success.
16 */
17int x_sha1_final(void *ctx, unsigned char result[20]);
18
19#endif
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette