mirror of
https://github.com/tribes2/engine.git
synced 2026-01-19 19:24:45 +00:00
19 lines
490 B
C
19 lines
490 B
C
//-----------------------------------------------------------------------------
|
|
// V12 Engine
|
|
//
|
|
// Copyright (c) 2001 GarageGames.Com
|
|
// Portions Copyright (c) 2001 by Sierra Online, Inc.
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef _CRYPTMGF_H_
|
|
#define _CRYPTMGF_H_
|
|
|
|
#ifndef _PLATFORM_H_
|
|
#include "Platform/platform.h"
|
|
#endif
|
|
|
|
bool MGF1(const U8* seed, const U32 seedLen,
|
|
U8* mask, const U32 maskLen);
|
|
|
|
#endif // _H_CRYPTMGF_
|