96fbde571fd3c60ba2451efb40a23432631d8187
[reactos.git] / reactos / drivers / filesystems / udfs / Include / key_lib.h
1 ////////////////////////////////////////////////////////////////////
2 // Copyright (C) Alexander Telyatnikov, Ivan Keliukh, Yegor Anchishkin, SKIF Software, 1999-2013. Kiev, Ukraine
3 // All rights reserved
4 ////////////////////////////////////////////////////////////////////
5
6 #include "platform.h"
7 #include "md5.h"
8
9 #define UDF_LONG_KEY_SIZE 1024
10
11 extern void
12 UDF_build_long_key(
13 char* buffer,
14 int blen,
15 char* key_str,
16 int klen
17 );
18
19 extern void
20 UDF_build_hash_by_key(
21 char* longkey_buffer,
22 int longkey_len,
23 char* key_hash,
24 char* key_str
25 );