mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-01 04:58:57 +00:00
21 lines
412 B
C++
21 lines
412 B
C++
#ifndef _RAR_ENCNAME_
|
|
#define _RAR_ENCNAME_
|
|
|
|
class EncodeFileName
|
|
{
|
|
private:
|
|
void AddFlags(int Value);
|
|
|
|
byte *EncName;
|
|
byte Flags;
|
|
uint FlagBits;
|
|
size_t FlagsPos;
|
|
size_t DestSize;
|
|
public:
|
|
EncodeFileName();
|
|
size_t Encode(char *Name,wchar *NameW,byte *EncName);
|
|
void Decode(char *Name,size_t NameSize,byte *EncName,size_t EncSize,wchar *NameW,size_t MaxDecSize);
|
|
};
|
|
|
|
#endif
|