diff options
author | mataes2007 <mataes2007@e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb> | 2011-11-26 15:47:48 +0000 |
---|---|---|
committer | mataes2007 <mataes2007@e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb> | 2011-11-26 15:47:48 +0000 |
commit | a6b865c29d52376d0b5470a68b9d4920721ed097 (patch) | |
tree | f497b4a804cf9c5d7224a5d25c313792bb914362 | |
parent | f04d64869f3b1de54fb343f28f955584780001b8 (diff) |
plugins description fix
git-svn-id: http://miranda-plugins.googlecode.com/svn/trunk@216 e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb
-rw-r--r-- | Dbx_mmap_SA/cryptors/Athena/UAthena.pas | 172 | ||||
-rw-r--r-- | Dbx_mmap_SA/cryptors/Athena/athena.cfg | 38 | ||||
-rw-r--r-- | Dbx_mmap_SA/cryptors/Athena/athena.dof | 136 | ||||
-rw-r--r-- | Dbx_mmap_SA/cryptors/Athena/athena.dpr | 114 | ||||
-rw-r--r-- | Dbx_mmap_SA/cryptors/Athena/athena.rc | 28 | ||||
-rw-r--r-- | Dbx_mmap_SA/cryptors/Athena/athena.res | bin | 916 -> 0 bytes | |||
-rw-r--r-- | Dbx_mmap_SA/cryptors/Athena/md5_mod256_unit.pas | 64 | ||||
-rw-r--r-- | Dbx_mmap_SA/cryptors/Athena/md5_unit.pas | 406 | ||||
-rw-r--r-- | Dbx_mmap_SA/cryptors/RC4/cryptor.c | 133 | ||||
-rw-r--r-- | Dbx_mmap_SA/cryptors/RC4/rc4.sln | 20 | ||||
-rw-r--r-- | Dbx_mmap_SA/cryptors/RC4/rc4.vcproj | 187 | ||||
-rw-r--r-- | Dbx_mmap_SA/cryptors/RC4/rc4_10.vcxproj | 264 | ||||
-rw-r--r-- | Dbx_mmap_SA/cryptors/RC4/rc4_10.vcxproj.filters | 22 | ||||
-rw-r--r-- | LangMan/main.c | 2 | ||||
-rw-r--r-- | ProfileManager/pmanagerEx.c | 2 | ||||
-rw-r--r-- | UserGuide/main.c | 4 | ||||
-rw-r--r-- | YAMN/main.cpp | 2 | ||||
-rw-r--r-- | ZeroNotification/version.h | 2 |
18 files changed, 6 insertions, 1590 deletions
diff --git a/Dbx_mmap_SA/cryptors/Athena/UAthena.pas b/Dbx_mmap_SA/cryptors/Athena/UAthena.pas deleted file mode 100644 index 23cb283..0000000 --- a/Dbx_mmap_SA/cryptors/Athena/UAthena.pas +++ /dev/null @@ -1,172 +0,0 @@ -unit UAthena;
-{
- Athena: cryptor module for Miranda SecuredMMAP Database driver
- Copyright 2007-2008 Klyde
-
- This program is free software; you can redistribute it and/or
- modify it under the terms of the GNU General Public License
- as published by the Free Software Foundation; either version 2
- of the License, or (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-}
-
-
-interface
-uses
- SysUtils, md5_unit, windows;
-Type
- Arr = array of byte;
- PArr = ^Arr;
-
- Function MD5_Mod(s: string; block_count: byte): string;
- Procedure MakeKey(key: PArr; len: word; pwd: string);
- Procedure EncryptData(key: PArr; data: PByte; size: LongWord);
- Procedure DecryptData(key: PArr; data: PByte; size: LongWord);
-
-implementation
-//==============================================================================
-Function str_back(s: string): string;
-Var
- i: integer;
-Begin
- result := '';
- for i := Length(s) downto 1 do result := result + s[i];
-end;
-//==============================================================================
-Function MD5_Mod(s: string; block_count: byte): string;
-Var
- s1, s2, sb : String;
- k : word;
-Begin
- sb := str_back(s);
- s2 := '';
- For k := 1 to block_count do
- Begin
- s1 := md5(s + sb);
- s2 := str_back(s2 + md5(s1+sb+s2));
- End;
- result := s2;
-end;
-//==============================================================================
-Procedure MakeKey(key: PArr; len: word; pwd: string);
-Var
- s : string;
- i : word;
-Begin
- if len > 64 then Len := ((Len div 16) + 1)*16 else Len := 64;
- SetLength(key^, Len);
- s := MD5_mod(pwd, len div 16);
- for i := 1 to length(s) div 2 do key^[i-1] := strtoint('$' + copy(s, i*2 - 1, 2));
-end;
-//==============================================================================
-Procedure GetNENum(key: arr; var n1, n2: LongWord);
-Var
- i: LongWord;
-Begin
- n1 := 0;
- n2 := 0;
- for i := 0 to Length(key) - 1 do
- Begin
- n1 := n1 + key[i] + (i + 1)*(n1+1);
- n2 := n2 + key[i] - (i + 1)*(n2+1);
- end;
- n1 := n1*2 + 1;
- n2 := n2*2 + 3;
-end;
-
-//==============================================================================
-Procedure SimGamm(key: PArr; data: PByte; size: LongWord);
-Var
- kg : Arr;
- i, n1, n2 : LongWord;
- lk, k1, k2 : word;
-Begin
- lk := Length(key^);
- SetLength(kg, lk);
- for i := 0 to lk - 1 do kg[i] := key^[i];
- GetNENum(kg, n1, n2);
- For i := 1 to size - 1 do
- Begin
- if (i mod lk) = 0 then GetNENum(kg, n1, n2);
- k1 := (i+n1+7)*n2 mod lk;
- k2 := (i+n2+3)*n1 mod lk;
-
- PByte(LongWord(data)+i)^ := PByte(LongWord(data)+i)^ xor kg[k1] xor kg[k2];
-
- kg[k1] := kg[k1]*k1 + kg[k2] + i*k2;
- kg[k2] := kg[k2]*k2 + kg[k1] + i*k1;
- end;
-end;
-//==============================================================================
-Procedure Left(key: PArr; data: PByte; size: LongWord);
-Var
- k : Arr;
- i, n1, n2 : LongWord;
- lk, k1, k2 : word;
-
-Begin
- lk := Length(key^);
-
- SetLength(k, lk);
- for i := 0 to lk - 1 do k[i] := key^[i];
- GetNENum(k, n1, n2);
- //---------------------------------------------------------------------------
- k1 := (n2 + lk)*n1 mod lk;
- k2 := (n1 + lk)*n2 mod lk;
- data^ := data^ xor k[k1] xor k[k2];
-
- //---------------------------------------------------------------------------
- For i := 1 to size - 1 do
- Begin
- k1 := (i+n1)*n2 mod lk;
- k2 := (i+n2)*n1 mod lk;
-
- PByte(LongWord(data)+i)^ := PByte(LongWord(data)+i)^ xor ((PByte(LongWord(data)+i-1)^ xor k[k1]) xor k[k2]);
- end;
-end;
-//==============================================================================
-Procedure Right(key: PArr; data: PByte; size: LongWord);
-Var
- k : Arr;
- i, n1, n2 : LongWord;
- lk, k1, k2 : word;
-Begin
- lk := Length(key^);
- SetLength(k, lk);
- for i := 0 to lk - 1 do k[i] := key^[i];
- GetNENum(k, n1, n2);
- //---------------------------------------------------------------------------
- For i := size - 1 downto 1 do
- Begin
- k1 := (i+n1)*n2 mod lk;
- k2 := (i+n2)*n1 mod lk;
- PByte(LongWord(data) + i)^ := PByte(LongWord(data)+i)^ xor ((PByte(LongWord(data) + i - 1)^ xor k[k1]) xor k[k2]);
- end;
- //---------------------------------------------------------------------------
- k1 := (n2 + lk)*n1 mod lk;
- k2 := (n1 + lk)*n2 mod lk;
- data^ := data^ xor k[k1] xor k[k2];
-end;
-//==============================================================================
-Procedure EncryptData(key: PArr; data: PByte; size: LongWord);
-Begin
- Left(key, data, size);
- SimGamm(key, data, size);
-end;
-//==============================================================================
-Procedure DecryptData(key: PArr; data: PByte; size: LongWord);
-Begin
- SimGamm(key, data, size);
- Right(key, data, size);
-end;
-//==============================================================================
-end.
-
diff --git a/Dbx_mmap_SA/cryptors/Athena/athena.cfg b/Dbx_mmap_SA/cryptors/Athena/athena.cfg deleted file mode 100644 index 273efb4..0000000 --- a/Dbx_mmap_SA/cryptors/Athena/athena.cfg +++ /dev/null @@ -1,38 +0,0 @@ --$A8
--$B-
--$C+
--$D+
--$E-
--$F-
--$G+
--$H+
--$I+
--$J-
--$K-
--$L+
--$M-
--$N+
--$O+
--$P+
--$Q-
--$R-
--$S-
--$T-
--$U-
--$V+
--$W-
--$X+
--$YD
--$Z1
--cg
--AWinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE;
--H+
--W+
--M
--$M16384,1048576
--K$00400000
--LE"d:\program files\borland\delphi7\Projects\Bpl"
--LN"d:\program files\borland\delphi7\Projects\Bpl"
--w-UNSAFE_TYPE
--w-UNSAFE_CODE
--w-UNSAFE_CAST
diff --git a/Dbx_mmap_SA/cryptors/Athena/athena.dof b/Dbx_mmap_SA/cryptors/Athena/athena.dof deleted file mode 100644 index d43219d..0000000 --- a/Dbx_mmap_SA/cryptors/Athena/athena.dof +++ /dev/null @@ -1,136 +0,0 @@ -[FileVersion]
-Version=7.0
-[Compiler]
-A=8
-B=0
-C=1
-D=1
-E=0
-F=0
-G=1
-H=1
-I=1
-J=0
-K=0
-L=1
-M=0
-N=1
-O=1
-P=1
-Q=0
-R=0
-S=0
-T=0
-U=0
-V=1
-W=0
-X=1
-Y=1
-Z=1
-ShowHints=1
-ShowWarnings=1
-UnitAliases=WinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE;
-NamespacePrefix=
-SymbolDeprecated=1
-SymbolLibrary=1
-SymbolPlatform=1
-UnitLibrary=1
-UnitPlatform=1
-UnitDeprecated=1
-HResultCompat=1
-HidingMember=1
-HiddenVirtual=1
-Garbage=1
-BoundsError=1
-ZeroNilCompat=1
-StringConstTruncated=1
-ForLoopVarVarPar=1
-TypedConstVarPar=1
-AsgToTypedConst=1
-CaseLabelRange=1
-ForVariable=1
-ConstructingAbstract=1
-ComparisonFalse=1
-ComparisonTrue=1
-ComparingSignedUnsigned=1
-CombiningSignedUnsigned=1
-UnsupportedConstruct=1
-FileOpen=1
-FileOpenUnitSrc=1
-BadGlobalSymbol=1
-DuplicateConstructorDestructor=1
-InvalidDirective=1
-PackageNoLink=1
-PackageThreadVar=1
-ImplicitImport=1
-HPPEMITIgnored=1
-NoRetVal=1
-UseBeforeDef=1
-ForLoopVarUndef=1
-UnitNameMismatch=1
-NoCFGFileFound=1
-MessageDirective=1
-ImplicitVariants=1
-UnicodeToLocale=1
-LocaleToUnicode=1
-ImagebaseMultiple=1
-SuspiciousTypecast=1
-PrivatePropAccessor=1
-UnsafeType=0
-UnsafeCode=0
-UnsafeCast=0
-[Linker]
-MapFile=0
-OutputObjs=0
-ConsoleApp=1
-DebugInfo=0
-RemoteSymbols=0
-MinStackSize=16384
-MaxStackSize=1048576
-ImageBase=4194304
-ExeDescription=
-[Directories]
-OutputDir=
-UnitOutputDir=
-PackageDLLOutputDir=
-PackageDCPOutputDir=
-SearchPath=
-Packages=
-Conditionals=
-DebugSourceDirs=
-UsePackages=0
-[Parameters]
-RunParams=
-HostApplication=
-Launcher=
-UseLauncher=0
-DebugCWD=
-[Language]
-ActiveLang=
-ProjectLang=
-RootDir=
-[Version Info]
-IncludeVerInfo=0
-AutoIncBuild=0
-MajorVer=1
-MinorVer=0
-Release=0
-Build=0
-Debug=0
-PreRelease=0
-Special=0
-Private=0
-DLL=0
-Locale=1049
-CodePage=1251
-[Version Info Keys]
-CompanyName=
-FileDescription=
-FileVersion=1.0.0.0
-InternalName=
-LegalCopyright=
-LegalTrademarks=
-OriginalFilename=
-ProductName=
-ProductVersion=1.0.0.0
-Comments=
diff --git a/Dbx_mmap_SA/cryptors/Athena/athena.dpr b/Dbx_mmap_SA/cryptors/Athena/athena.dpr deleted file mode 100644 index 00b95c2..0000000 --- a/Dbx_mmap_SA/cryptors/Athena/athena.dpr +++ /dev/null @@ -1,114 +0,0 @@ -library athena;
-
-{
- Athena: cryptor module for Miranda SecuredMMAP Database driver
- Copyright 2007-2008 Klyde
-
- This program is free software; you can redistribute it and/or
- modify it under the terms of the GNU General Public License
- as published by the Free Software Foundation; either version 2
- of the License, or (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-}
-
-uses
- SysUtils,
- Classes,
- UAthena,
- WIndows;
-
-{$R *.res}
-
-type
- TGenerateKey = function(key: PChar): PArr; stdcall;
- TFreeKey = procedure(key: PArr); stdcall;
- TEncryptMem = procedure(data: PByte; size: LongWord; key: PArr); stdcall;
-
- PCryptorInfo = ^TCryptorInfo;
- TCryptorInfo = record
- GenerateKey: TGenerateKey;
- FreeKey: TFreeKey;
-
- EncryptMem: TEncryptMem;
- DecryptMem: TEncryptMem;
-
- Name: PChar;
- Info: PChar;
- Author: PChar;
- Site: PChar;
- Email: PChar;
-
- version: dword;
-
- uid: word;
- end;
-
-var
- Info: TCryptorInfo;
-
-
-function PLUGIN_MAKE_VERSION(a,b,c,d: Cardinal): integer;
-begin
- Result := (a shl 24) or (b shl 16) or (c shl 8) or d;
-end;
-
-function GenerateKey(pwd: PChar): PArr; stdcall;
-var
- a: PArr;
-begin
-
- new(a);
- MakeKey(a, 512, pwd);
- result := a;
-
-end;
-
-procedure FreeKey(key: PArr); stdcall;
-begin
- FreeMem(key);
-end;
-
-procedure EncryptMem(data: PByte; size: LongWord; key: PArr); stdcall;
-begin
- if size <= 0 then exit;
- EncryptData(key, data, size);
-end;
-
-procedure DecryptMem(data: PByte; size: LongWord; key: PArr); stdcall;
-begin
- if size <= 0 then exit;
- DecryptData(key, data, size);
-end;
-
-function GetCryptor: PCryptorInfo; stdcall;
-begin
- Info.Name := 'Athena';
- Info.Author := 'Klyde';
- Info.Site := 'http://cityopen.ru/forum/journal.php?user=151';
- Info.Email := 'xxxmara@mail.ru';
- Info.Info := 'Secure alghoritm developed in russian universities';
-
- Info.version := PLUGIN_MAKE_VERSION(0,0,3,0);
-
- Info.UID := $FEA8;
-
- Info.GenerateKey := GenerateKey;
- Info.FreeKey := FreeKey;
- Info.EncryptMem := EncryptMem;
- Info.DecryptMem := DecryptMem;
-
- result := @Info;
-end;
-
-exports GetCryptor;
-
-begin
-end.
diff --git a/Dbx_mmap_SA/cryptors/Athena/athena.rc b/Dbx_mmap_SA/cryptors/Athena/athena.rc deleted file mode 100644 index bc035ab..0000000 --- a/Dbx_mmap_SA/cryptors/Athena/athena.rc +++ /dev/null @@ -1,28 +0,0 @@ -VS_VERSION_INFO VERSIONINFO
- FILEVERSION 0,0,3,0
- PRODUCTVERSION 0,0,3,0
- FILEFLAGSMASK $3F
- FILEOS 4
- FILETYPE 2
- FILESUBTYPE 0
-BEGIN
- BLOCK "StringFileInfo"
- BEGIN
- BLOCK "000004b0"
- BEGIN
- VALUE "CompanyName",""
- VALUE "Comments", "Secure alghoritm developed in russian universities"0
- VALUE "FileDescription", "Secure alghoritm developed in russian universities"0
- VALUE "FileVersion", "0, 0, 3, 0 "0
- VALUE "InternalName", "Athena"0
- VALUE "OriginalFilename", "Athena.dll"0
- VALUE "ProductName", "Athena"0
- VALUE "ProductVersion", "0, 0, 3, 0 "0
- VALUE "SpecialBuild", ".04.2010 "0
- END
- END
- BLOCK "VarFileInfo"
- BEGIN
- VALUE "Translation",0,1200
- END
-END
\ No newline at end of file diff --git a/Dbx_mmap_SA/cryptors/Athena/athena.res b/Dbx_mmap_SA/cryptors/Athena/athena.res Binary files differdeleted file mode 100644 index 908733f..0000000 --- a/Dbx_mmap_SA/cryptors/Athena/athena.res +++ /dev/null diff --git a/Dbx_mmap_SA/cryptors/Athena/md5_mod256_unit.pas b/Dbx_mmap_SA/cryptors/Athena/md5_mod256_unit.pas deleted file mode 100644 index 53b2d99..0000000 --- a/Dbx_mmap_SA/cryptors/Athena/md5_mod256_unit.pas +++ /dev/null @@ -1,64 +0,0 @@ -unit md5_mod256_unit;
-interface
-
-Uses
- MD5_Unit, sysutils, classes, windows;
-Const
- MSize = 256;
-Type
- tiAr = array [0..255] of integer;
-
-Function MD5_Mod(s: String): String;
-Function MD5_Matrix(s: string): tArr;
-Function str_back(s: String): String;
-
-implementation
-//==============================================================================
-Function str_back(s: String): String;
-Var
- i: integer;
-Begin
- result := '';
- for i := Length(s) downto 1 do result := result + s[i];
-end;
-//==============================================================================
-Function MD5_Mod_back(s: String): String;
-Var
- s1, s2 : String;
- k : word;
-Begin
- s1 := str_back(s)+s;
- s2 := md5(str_back(s)+str_back(md5(s))+
- str_back(md5(s+s))+
- str_back(md5(s+s+s))+
- str_back(md5(s+s+s+s))+
- str_back(md5(s+s+s+'asddsa'+s)));
- For k:=1 to trunc(sqrt(MSize))-1 do
- Begin
- s1 := md5(s1 + s2 + md5(s1+s1+s2+s) + md5(s2+s2+s1+s) + s);
- s2 := str_back(s2 + str_back(md5(s1+s2+md5(s))));
- End;
- result:=s2;
-end;
-//==============================================================================
-Function MD5_Mod(s: String): String;
-Var
- s1, s2 : String;
- k : word;
-Begin
- s1 := s + AnsiUpperCase(s) + AnsiLowerCase(s);
- s2 := md5(s+md5(s)+md5(s+s)+md5(s+AnsiUpperCase(s)+s)+md5(s+AnsiLowerCase(s+s)+s)+md5(s+s+str_back(s+s+'qweewq')));
- For k:=1 to trunc(sqrt(MSize))-1 do
- Begin
- s1 := md5(s1 + str_back(s2) + md5(s1+s1+s2+s) + str_back(md5(s2+s2+s1+s)) + s);
- s2 := str_back(s2 + md5(s1+AnsiUpperCase(s2+md5(s))));
- End;
- result:=s2;
-end;
-//==============================================================================
-
-//==============================================================================
-end.
-
-
-
diff --git a/Dbx_mmap_SA/cryptors/Athena/md5_unit.pas b/Dbx_mmap_SA/cryptors/Athena/md5_unit.pas deleted file mode 100644 index d09c086..0000000 --- a/Dbx_mmap_SA/cryptors/Athena/md5_unit.pas +++ /dev/null @@ -1,406 +0,0 @@ -unit md5_unit;
-
-interface
-
-uses
- Windows, SysUtils;
-Type
- TMD5 = Array [0..15] of byte;
-
-function MD5(s: string): string;
-function MD5_arr(s: string): TMD5;
-
-implementation
-//==============================================================================
-function Int2Hex( Value : DWord; Digits : Integer ) : String;
-asm
- PUSH 0
- ADD ESP, -0Ch
-
- PUSH EBX
- PUSH ECX
-
- LEA EBX, [ESP+8+0Fh] // EBX := @Buf[ 15 ]
- AND EDX, $F
-
-@@loop: DEC EBX
- DEC EDX
-
- PUSH EAX
- {$IFDEF PARANOIA}
- DB $24, $0F
- {$ELSE}
- AND AL, 0Fh
- {$ENDIF}
- {$IFDEF PARANOIA}
- DB $3C, 9
- {$ELSE}
- CMP AL, 9
- {$ENDIF}
- JA @@10
- {$IFDEF PARANOIA}
- DB $04, 30h-41h+0Ah
- {$ELSE}
- ADD AL,30h-41h+0Ah
- {$ENDIF}
-@@10:
- {$IFDEF PARANOIA}
- DB $04, 41h-0Ah
- {$ELSE}
- ADD AL,41h-0Ah
- {$ENDIF}
- MOV byte ptr [EBX], AL
- POP EAX
- SHR EAX, 4
-
- JNZ @@loop
-
- TEST EDX, EDX
- JG @@loop
-
- POP EAX // EAX = @Result
- MOV EDX, EBX // EDX = @resulting string
- CALL System.@LStrFromPChar
-
- POP EBX
- ADD ESP, 10h
-
-end;
-//==============================================================================
-function MD5(s: string): string;
-var
- a : TMD5;
- i : integer;
- LenHi, LenLo: longword;
- Index: DWord;
- HashBuffer : array[0..63] of byte;
- CurrentHash : array[0..3] of DWord;
-
- procedure Burn;
- begin
- LenHi:= 0; LenLo:= 0;
- Index:= 0;
- FillChar(HashBuffer,Sizeof(HashBuffer),0);
- FillChar(CurrentHash,Sizeof(CurrentHash),0);
- end;
-
- procedure Init;
- begin
- Burn;
- CurrentHash[0]:= $67452301;
- CurrentHash[1]:= $efcdab89;
- CurrentHash[2]:= $98badcfe;
- CurrentHash[3]:= $10325476;
- end;
-
- function LRot32(a, b: longword): longword;
- begin
- Result:= (a shl b) or (a shr (32-b));
- end;
-
- procedure Compress;
- var
- Data : array[0..15] of dword;
- A, B, C, D: dword;
- begin
- Move(HashBuffer,Data,Sizeof(Data));
- A:= CurrentHash[0];
- B:= CurrentHash[1];
- C:= CurrentHash[2];
- D:= CurrentHash[3];
-
- A:= B + LRot32(A + (D xor (B and (C xor D))) + Data[ 0] + $d76aa478,7);
- D:= A + LRot32(D + (C xor (A and (B xor C))) + Data[ 1] + $e8c7b756,12);
- C:= D + LRot32(C + (B xor (D and (A xor B))) + Data[ 2] + $242070db,17);
- B:= C + LRot32(B + (A xor (C and (D xor A))) + Data[ 3] + $c1bdceee,22);
- A:= B + LRot32(A + (D xor (B and (C xor D))) + Data[ 4] + $f57c0faf,7);
- D:= A + LRot32(D + (C xor (A and (B xor C))) + Data[ 5] + $4787c62a,12);
- C:= D + LRot32(C + (B xor (D and (A xor B))) + Data[ 6] + $a8304613,17);
- B:= C + LRot32(B + (A xor (C and (D xor A))) + Data[ 7] + $fd469501,22);
- A:= B + LRot32(A + (D xor (B and (C xor D))) + Data[ 8] + $698098d8,7);
- D:= A + LRot32(D + (C xor (A and (B xor C))) + Data[ 9] + $8b44f7af,12);
- C:= D + LRot32(C + (B xor (D and (A xor B))) + Data[10] + $ffff5bb1,17);
- B:= C + LRot32(B + (A xor (C and (D xor A))) + Data[11] + $895cd7be,22);
- A:= B + LRot32(A + (D xor (B and (C xor D))) + Data[12] + $6b901122,7);
- D:= A + LRot32(D + (C xor (A and (B xor C))) + Data[13] + $fd987193,12);
- C:= D + LRot32(C + (B xor (D and (A xor B))) + Data[14] + $a679438e,17);
- B:= C + LRot32(B + (A xor (C and (D xor A))) + Data[15] + $49b40821,22);
-
- A:= B + LRot32(A + (C xor (D and (B xor C))) + Data[ 1] + $f61e2562,5);
- D:= A + LRot32(D + (B xor (C and (A xor B))) + Data[ 6] + $c040b340,9);
- C:= D + LRot32(C + (A xor (B and (D xor A))) + Data[11] + $265e5a51,14);
- B:= C + LRot32(B + (D xor (A and (C xor D))) + Data[ 0] + $e9b6c7aa,20);
- A:= B + LRot32(A + (C xor (D and (B xor C))) + Data[ 5] + $d62f105d,5);
- D:= A + LRot32(D + (B xor (C and (A xor B))) + Data[10] + $02441453,9);
- C:= D + LRot32(C + (A xor (B and (D xor A))) + Data[15] + $d8a1e681,14);
- B:= C + LRot32(B + (D xor (A and (C xor D))) + Data[ 4] + $e7d3fbc8,20);
- A:= B + LRot32(A + (C xor (D and (B xor C))) + Data[ 9] + $21e1cde6,5);
- D:= A + LRot32(D + (B xor (C and (A xor B))) + Data[14] + $c33707d6,9);
- C:= D + LRot32(C + (A xor (B and (D xor A))) + Data[ 3] + $f4d50d87,14);
- B:= C + LRot32(B + (D xor (A and (C xor D))) + Data[ 8] + $455a14ed,20);
- A:= B + LRot32(A + (C xor (D and (B xor C))) + Data[13] + $a9e3e905,5);
- D:= A + LRot32(D + (B xor (C and (A xor B))) + Data[ 2] + $fcefa3f8,9);
- C:= D + LRot32(C + (A xor (B and (D xor A))) + Data[ 7] + $676f02d9,14);
- B:= C + LRot32(B + (D xor (A and (C xor D))) + Data[12] + $8d2a4c8a,20);
-
- A:= B + LRot32(A + (B xor C xor D) + Data[ 5] + $fffa3942,4);
- D:= A + LRot32(D + (A xor B xor C) + Data[ 8] + $8771f681,11);
- C:= D + LRot32(C + (D xor A xor B) + Data[11] + $6d9d6122,16);
- B:= C + LRot32(B + (C xor D xor A) + Data[14] + $fde5380c,23);
- A:= B + LRot32(A + (B xor C xor D) + Data[ 1] + $a4beea44,4);
- D:= A + LRot32(D + (A xor B xor C) + Data[ 4] + $4bdecfa9,11);
- C:= D + LRot32(C + (D xor A xor B) + Data[ 7] + $f6bb4b60,16);
- B:= C + LRot32(B + (C xor D xor A) + Data[10] + $bebfbc70,23);
- A:= B + LRot32(A + (B xor C xor D) + Data[13] + $289b7ec6,4);
- D:= A + LRot32(D + (A xor B xor C) + Data[ 0] + $eaa127fa,11);
- C:= D + LRot32(C + (D xor A xor B) + Data[ 3] + $d4ef3085,16);
- B:= C + LRot32(B + (C xor D xor A) + Data[ 6] + $04881d05,23);
- A:= B + LRot32(A + (B xor C xor D) + Data[ 9] + $d9d4d039,4);
- D:= A + LRot32(D + (A xor B xor C) + Data[12] + $e6db99e5,11);
- C:= D + LRot32(C + (D xor A xor B) + Data[15] + $1fa27cf8,16);
- B:= C + LRot32(B + (C xor D xor A) + Data[ 2] + $c4ac5665,23);
-
- A:= B + LRot32(A + (C xor (B or (not D))) + Data[ 0] + $f4292244,6);
- D:= A + LRot32(D + (B xor (A or (not C))) + Data[ 7] + $432aff97,10);
- C:= D + LRot32(C + (A xor (D or (not B))) + Data[14] + $ab9423a7,15);
- B:= C + LRot32(B + (D xor (C or (not A))) + Data[ 5] + $fc93a039,21);
- A:= B + LRot32(A + (C xor (B or (not D))) + Data[12] + $655b59c3,6);
- D:= A + LRot32(D + (B xor (A or (not C))) + Data[ 3] + $8f0ccc92,10);
- C:= D + LRot32(C + (A xor (D or (not B))) + Data[10] + $ffeff47d,15);
- B:= C + LRot32(B + (D xor (C or (not A))) + Data[ 1] + $85845dd1,21);
- A:= B + LRot32(A + (C xor (B or (not D))) + Data[ 8] + $6fa87e4f,6);
- D:= A + LRot32(D + (B xor (A or (not C))) + Data[15] + $fe2ce6e0,10);
- C:= D + LRot32(C + (A xor (D or (not B))) + Data[ 6] + $a3014314,15);
- B:= C + LRot32(B + (D xor (C or (not A))) + Data[13] + $4e0811a1,21);
- A:= B + LRot32(A + (C xor (B or (not D))) + Data[ 4] + $f7537e82,6);
- D:= A + LRot32(D + (B xor (A or (not C))) + Data[11] + $bd3af235,10);
- C:= D + LRot32(C + (A xor (D or (not B))) + Data[ 2] + $2ad7d2bb,15);
- B:= C + LRot32(B + (D xor (C or (not A))) + Data[ 9] + $eb86d391,21);
-
- Inc(CurrentHash[0],A);
- Inc(CurrentHash[1],B);
- Inc(CurrentHash[2],C);
- Inc(CurrentHash[3],D);
- Index:= 0;
- FillChar(HashBuffer,Sizeof(HashBuffer),0);
- end;
-
-procedure Update(const Buffer; Size: longword);
-var
- PBuf: ^byte;
-begin
- Inc(LenHi,Size shr 29);
- Inc(LenLo,Size*8);
- if LenLo < (Size*8) then Inc(LenHi);
- PBuf:= @Buffer;
- while Size> 0 do
- begin
- if (Sizeof(HashBuffer)-Index)<= DWord(Size) then
- begin
- Move(PBuf^,HashBuffer[Index],Sizeof(HashBuffer)-Index);
- Dec(Size,Sizeof(HashBuffer)-Index);
- Inc(PBuf,Sizeof(HashBuffer)-Index);
- Compress;
- end else
- begin
- Move(PBuf^,HashBuffer[Index],Size);
- Inc(Index,Size);
- Size:= 0;
- end;
- end;
-end;
-
-procedure Final(var Digest);
-begin
- HashBuffer[Index] := $80;
- if Index>= 56 then Compress;
- PDWord(@HashBuffer[56])^ := LenLo;
- PDWord(@HashBuffer[60])^ := LenHi;
- Compress;
- Move(CurrentHash, Digest, Sizeof(CurrentHash));
- Burn;
-end;
-
-begin
- Init;
- Update(s[1], Length(s));
- Final(a);
- result := '';
- for i := 0 to 15 do result := result + Int2Hex(a[i], 2);
- Burn;
-end;
-//==============================================================================
-function MD5_arr(s: string): TMD5;
-var
- a : TMD5;
- LenHi, LenLo: longword;
- Index: DWord;
- HashBuffer : array[0..63] of byte;
- CurrentHash : array[0..3] of DWord;
-
- procedure Burn;
- begin
- LenHi:= 0; LenLo:= 0;
- Index:= 0;
- FillChar(HashBuffer,Sizeof(HashBuffer),0);
- FillChar(CurrentHash,Sizeof(CurrentHash),0);
- end;
-
- procedure Init;
- begin
- Burn;
- CurrentHash[0]:= $67452301;
- CurrentHash[1]:= $efcdab89;
- CurrentHash[2]:= $98badcfe;
- CurrentHash[3]:= $10325476;
- end;
-
- function LRot32(a, b: longword): longword;
- begin
- Result:= (a shl b) or (a shr (32-b));
- end;
-
- procedure Compress;
- var
- Data : array[0..15] of dword;
- A, B, C, D: dword;
- begin
- Move(HashBuffer,Data,Sizeof(Data));
- A:= CurrentHash[0];
- B:= CurrentHash[1];
- C:= CurrentHash[2];
- D:= CurrentHash[3];
-
- A:= B + LRot32(A + (D xor (B and (C xor D))) + Data[ 0] + $d76aa478,7);
- D:= A + LRot32(D + (C xor (A and (B xor C))) + Data[ 1] + $e8c7b756,12);
- C:= D + LRot32(C + (B xor (D and (A xor B))) + Data[ 2] + $242070db,17);
- B:= C + LRot32(B + (A xor (C and (D xor A))) + Data[ 3] + $c1bdceee,22);
- A:= B + LRot32(A + (D xor (B and (C xor D))) + Data[ 4] + $f57c0faf,7);
- D:= A + LRot32(D + (C xor (A and (B xor C))) + Data[ 5] + $4787c62a,12);
- C:= D + LRot32(C + (B xor (D and (A xor B))) + Data[ 6] + $a8304613,17);
- B:= C + LRot32(B + (A xor (C and (D xor A))) + Data[ 7] + $fd469501,22);
- A:= B + LRot32(A + (D xor (B and (C xor D))) + Data[ 8] + $698098d8,7);
- D:= A + LRot32(D + (C xor (A and (B xor C))) + Data[ 9] + $8b44f7af,12);
- C:= D + LRot32(C + (B xor (D and (A xor B))) + Data[10] + $ffff5bb1,17);
- B:= C + LRot32(B + (A xor (C and (D xor A))) + Data[11] + $895cd7be,22);
- A:= B + LRot32(A + (D xor (B and (C xor D))) + Data[12] + $6b901122,7);
- D:= A + LRot32(D + (C xor (A and (B xor C))) + Data[13] + $fd987193,12);
- C:= D + LRot32(C + (B xor (D and (A xor B))) + Data[14] + $a679438e,17);
- B:= C + LRot32(B + (A xor (C and (D xor A))) + Data[15] + $49b40821,22);
-
- A:= B + LRot32(A + (C xor (D and (B xor C))) + Data[ 1] + $f61e2562,5);
- D:= A + LRot32(D + (B xor (C and (A xor B))) + Data[ 6] + $c040b340,9);
- C:= D + LRot32(C + (A xor (B and (D xor A))) + Data[11] + $265e5a51,14);
- B:= C + LRot32(B + (D xor (A and (C xor D))) + Data[ 0] + $e9b6c7aa,20);
- A:= B + LRot32(A + (C xor (D and (B xor C))) + Data[ 5] + $d62f105d,5);
- D:= A + LRot32(D + (B xor (C and (A xor B))) + Data[10] + $02441453,9);
- C:= D + LRot32(C + (A xor (B and (D xor A))) + Data[15] + $d8a1e681,14);
- B:= C + LRot32(B + (D xor (A and (C xor D))) + Data[ 4] + $e7d3fbc8,20);
- A:= B + LRot32(A + (C xor (D and (B xor C))) + Data[ 9] + $21e1cde6,5);
- D:= A + LRot32(D + (B xor (C and (A xor B))) + Data[14] + $c33707d6,9);
- C:= D + LRot32(C + (A xor (B and (D xor A))) + Data[ 3] + $f4d50d87,14);
- B:= C + LRot32(B + (D xor (A and (C xor D))) + Data[ 8] + $455a14ed,20);
- A:= B + LRot32(A + (C xor (D and (B xor C))) + Data[13] + $a9e3e905,5);
- D:= A + LRot32(D + (B xor (C and (A xor B))) + Data[ 2] + $fcefa3f8,9);
- C:= D + LRot32(C + (A xor (B and (D xor A))) + Data[ 7] + $676f02d9,14);
- B:= C + LRot32(B + (D xor (A and (C xor D))) + Data[12] + $8d2a4c8a,20);
-
- A:= B + LRot32(A + (B xor C xor D) + Data[ 5] + $fffa3942,4);
- D:= A + LRot32(D + (A xor B xor C) + Data[ 8] + $8771f681,11);
- C:= D + LRot32(C + (D xor A xor B) + Data[11] + $6d9d6122,16);
- B:= C + LRot32(B + (C xor D xor A) + Data[14] + $fde5380c,23);
- A:= B + LRot32(A + (B xor C xor D) + Data[ 1] + $a4beea44,4);
- D:= A + LRot32(D + (A xor B xor C) + Data[ 4] + $4bdecfa9,11);
- C:= D + LRot32(C + (D xor A xor B) + Data[ 7] + $f6bb4b60,16);
- B:= C + LRot32(B + (C xor D xor A) + Data[10] + $bebfbc70,23);
- A:= B + LRot32(A + (B xor C xor D) + Data[13] + $289b7ec6,4);
- D:= A + LRot32(D + (A xor B xor C) + Data[ 0] + $eaa127fa,11);
- C:= D + LRot32(C + (D xor A xor B) + Data[ 3] + $d4ef3085,16);
- B:= C + LRot32(B + (C xor D xor A) + Data[ 6] + $04881d05,23);
- A:= B + LRot32(A + (B xor C xor D) + Data[ 9] + $d9d4d039,4);
- D:= A + LRot32(D + (A xor B xor C) + Data[12] + $e6db99e5,11);
- C:= D + LRot32(C + (D xor A xor B) + Data[15] + $1fa27cf8,16);
- B:= C + LRot32(B + (C xor D xor A) + Data[ 2] + $c4ac5665,23);
-
- A:= B + LRot32(A + (C xor (B or (not D))) + Data[ 0] + $f4292244,6);
- D:= A + LRot32(D + (B xor (A or (not C))) + Data[ 7] + $432aff97,10);
- C:= D + LRot32(C + (A xor (D or (not B))) + Data[14] + $ab9423a7,15);
- B:= C + LRot32(B + (D xor (C or (not A))) + Data[ 5] + $fc93a039,21);
- A:= B + LRot32(A + (C xor (B or (not D))) + Data[12] + $655b59c3,6);
- D:= A + LRot32(D + (B xor (A or (not C))) + Data[ 3] + $8f0ccc92,10);
- C:= D + LRot32(C + (A xor (D or (not B))) + Data[10] + $ffeff47d,15);
- B:= C + LRot32(B + (D xor (C or (not A))) + Data[ 1] + $85845dd1,21);
- A:= B + LRot32(A + (C xor (B or (not D))) + Data[ 8] + $6fa87e4f,6);
- D:= A + LRot32(D + (B xor (A or (not C))) + Data[15] + $fe2ce6e0,10);
- C:= D + LRot32(C + (A xor (D or (not B))) + Data[ 6] + $a3014314,15);
- B:= C + LRot32(B + (D xor (C or (not A))) + Data[13] + $4e0811a1,21);
- A:= B + LRot32(A + (C xor (B or (not D))) + Data[ 4] + $f7537e82,6);
- D:= A + LRot32(D + (B xor (A or (not C))) + Data[11] + $bd3af235,10);
- C:= D + LRot32(C + (A xor (D or (not B))) + Data[ 2] + $2ad7d2bb,15);
- B:= C + LRot32(B + (D xor (C or (not A))) + Data[ 9] + $eb86d391,21);
-
- Inc(CurrentHash[0],A);
- Inc(CurrentHash[1],B);
- Inc(CurrentHash[2],C);
- Inc(CurrentHash[3],D);
- Index:= 0;
- FillChar(HashBuffer,Sizeof(HashBuffer),0);
- end;
-
-procedure Update(const Buffer; Size: longword);
-var
- PBuf: ^byte;
-begin
- Inc(LenHi,Size shr 29);
- Inc(LenLo,Size*8);
- if LenLo < (Size*8) then Inc(LenHi);
- PBuf:= @Buffer;
- while Size> 0 do
- begin
- if (Sizeof(HashBuffer)-Index)<= DWord(Size) then
- begin
- Move(PBuf^,HashBuffer[Index],Sizeof(HashBuffer)-Index);
- Dec(Size,Sizeof(HashBuffer)-Index);
- Inc(PBuf,Sizeof(HashBuffer)-Index);
- Compress;
- end else
- begin
- Move(PBuf^,HashBuffer[Index],Size);
- Inc(Index,Size);
- Size:= 0;
- end;
- end;
-end;
-
-procedure Final(var Digest);
-begin
- HashBuffer[Index] := $80;
- if Index >= 56 then Compress;
- PDWord(@HashBuffer[56])^ := LenLo;
- PDWord(@HashBuffer[60])^ := LenHi;
- Compress;
- Move(CurrentHash, Digest, Sizeof(CurrentHash));
- Burn;
-end;
-
-begin
- Init;
- Update(s[1], Length(s));
- Final(a);
- result := a;
- Burn;
-end;
-
-end.
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/Dbx_mmap_SA/cryptors/RC4/cryptor.c b/Dbx_mmap_SA/cryptors/RC4/cryptor.c deleted file mode 100644 index 1f5f617..0000000 --- a/Dbx_mmap_SA/cryptors/RC4/cryptor.c +++ /dev/null @@ -1,133 +0,0 @@ -#include <windows.h>
-
-#define buf_size 1024
-
-typedef struct{
- void* (__stdcall *GenerateKey)(char* key);
- void (__stdcall *FreeKey)(void* key);
- void (__stdcall *EncryptMem)(BYTE* data, int size, void* key);
- void (__stdcall *DecryptMem)(BYTE* data, int size, void* key);
-
- char* Name;
- char* Info;
- char* Author;
- char* Site;
- char* Email;
-
- DWORD Version;
-
- WORD uid;
-} Cryptor;
-
-typedef struct rc4_key
-{
- BYTE state[256];
- BYTE x;
- BYTE y;
-} rc4_key;
-
-#define swap_byte(x,y) t = *(x); *(x) = *(y); *(y) = t
-
-void prepare_key(BYTE *key_data_ptr, size_t key_data_len, rc4_key *key)
-{
- int i = 0;
- BYTE t = 0;
- BYTE index1 = 0;
- BYTE index2 = 0;
- BYTE* state = 0;
- unsigned long counter = 0;
-
- state = &key->state[0];
- for(counter = 0; counter < 256; counter++)
- state[counter] = (BYTE)counter;
- key->x = 0;
- key->y = 0;
- index1 = 0;
- index2 = 0;
- for(counter = 0; counter < 256; counter++)
- {
- index2 = (key_data_ptr[index1] + state[counter] + index2) % 256;
- swap_byte(&state[counter], &state[index2]);
- index1 = (index1 + 1) % key_data_len;
- }
-}
-
-void rc4(BYTE *buffer_ptr, int buffer_len, rc4_key *key)
-{
- BYTE t = 0;
- BYTE x = 0;
- BYTE y = 0;
- BYTE* state = 0;
- BYTE xorIndex = 0;
- DWORD counter = 0;
- BYTE old_state[256];
-
- x = key->x;
- y = key->y;
- state = &key->state[0];
- memcpy(old_state, key->state, 256);
- for(counter = 0; counter < (DWORD)buffer_len; counter++)
- {
- x = (x + 1) % 256;
- y = (state[x] + y) % 256;
- swap_byte(&state[x], &state[y]);
- xorIndex = (state[x] + state[y]) % 256;
- buffer_ptr[counter] ^= state[xorIndex];
- }
- memcpy(key->state, old_state, 256);
- //key->x = x;
- //key->y = y;
-}
-
-
-void zero_fill(BYTE * pBuf, size_t bufSize)
-{
- size_t i;
- for(i = 0; i < bufSize; i++)
- pBuf[i] = 0;
-}
-
-void* __stdcall GenerateKey(char* pwd)
-{
- rc4_key* key;
- key = (rc4_key*)malloc(sizeof(rc4_key));
- zero_fill((BYTE*)key, sizeof(key));
- prepare_key(pwd, strlen(pwd), key);
- return key;
-}
-
-void __stdcall FreeKey(void* key)
-{
- free(key);
-}
-
-void __stdcall EncryptMem(BYTE* data, int size, void* key)
-{
- rc4(data, size, key);
-}
-
-void __stdcall DecryptMem(BYTE* data, int size, void* key)
-{
- rc4(data, size, key);
-}
-
-Cryptor cryptor =
- {
- GenerateKey,
- FreeKey,
- EncryptMem,
- DecryptMem,
- "RC4",
- "Old, very easy to crack stream cipher",
- "Unknown",
- "http://ru.wikipedia.org/wiki/RC4",
- "nomail",
- 0x00000100,
- 0xDEAD
- };
-
-
-__declspec(dllexport) Cryptor* GetCryptor()
-{
- return &cryptor;
-}
\ No newline at end of file diff --git a/Dbx_mmap_SA/cryptors/RC4/rc4.sln b/Dbx_mmap_SA/cryptors/RC4/rc4.sln deleted file mode 100644 index 2fefb62..0000000 --- a/Dbx_mmap_SA/cryptors/RC4/rc4.sln +++ /dev/null @@ -1,20 +0,0 @@ -
-Microsoft Visual Studio Solution File, Format Version 10.00
-# Visual Studio 2008
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "rc4", "rc4.vcproj", "{E38B4212-53BC-49A7-B821-9A99DB4774C6}"
-EndProject
-Global
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|Win32 = Debug|Win32
- Release|Win32 = Release|Win32
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {E38B4212-53BC-49A7-B821-9A99DB4774C6}.Debug|Win32.ActiveCfg = Debug|Win32
- {E38B4212-53BC-49A7-B821-9A99DB4774C6}.Debug|Win32.Build.0 = Debug|Win32
- {E38B4212-53BC-49A7-B821-9A99DB4774C6}.Release|Win32.ActiveCfg = Release|Win32
- {E38B4212-53BC-49A7-B821-9A99DB4774C6}.Release|Win32.Build.0 = Release|Win32
- EndGlobalSection
- GlobalSection(SolutionProperties) = preSolution
- HideSolutionNode = FALSE
- EndGlobalSection
-EndGlobal
diff --git a/Dbx_mmap_SA/cryptors/RC4/rc4.vcproj b/Dbx_mmap_SA/cryptors/RC4/rc4.vcproj deleted file mode 100644 index c725589..0000000 --- a/Dbx_mmap_SA/cryptors/RC4/rc4.vcproj +++ /dev/null @@ -1,187 +0,0 @@ -<?xml version="1.0" encoding="windows-1251"?>
-<VisualStudioProject
- ProjectType="Visual C++"
- Version="7.10"
- Name="rc4"
- ProjectGUID="{E38B4212-53BC-49A7-B821-9A99DB4774C6}"
- RootNamespace="rc4"
- Keyword="Win32Proj">
- <Platforms>
- <Platform
- Name="Win32"/>
- </Platforms>
- <Configurations>
- <Configuration
- Name="Debug|Win32"
- OutputDirectory="$(SolutionDir)$(ConfigurationName)/Plugins/cryptors/"
- IntermediateDirectory="$(SolutionDir)$(ConfigurationName)/Obj/$(ProjectName)"
- ConfigurationType="2"
- CharacterSet="1">
- <Tool
- Name="VCCLCompilerTool"
- Optimization="0"
- PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;RC4_EXPORTS"
- MinimalRebuild="TRUE"
- BasicRuntimeChecks="3"
- RuntimeLibrary="3"
- UsePrecompiledHeader="0"
- WarningLevel="3"
- DebugInformationFormat="4"/>
- <Tool
- Name="VCCustomBuildTool"/>
- <Tool
- Name="VCLinkerTool"
- OutputFile="$(OutDir)$(ProjectName).dll"
- LinkIncremental="2"
- GenerateDebugInformation="TRUE"
- SubSystem="2"
- TargetMachine="1"/>
- <Tool
- Name="VCMIDLTool"/>
- <Tool
- Name="VCPostBuildEventTool"/>
- <Tool
- Name="VCPreBuildEventTool"/>
- <Tool
- Name="VCPreLinkEventTool"/>
- <Tool
- Name="VCResourceCompilerTool"/>
- <Tool
- Name="VCWebServiceProxyGeneratorTool"/>
- <Tool
- Name="VCXMLDataGeneratorTool"/>
- <Tool
- Name="VCWebDeploymentTool"/>
- <Tool
- Name="VCManagedWrapperGeneratorTool"/>
- <Tool
- Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
- </Configuration>
- <Configuration
- Name="Release|Win32"
- OutputDirectory="$(SolutionDir)$(ConfigurationName)/Plugins/cryptors/"
- IntermediateDirectory="$(SolutionDir)$(ConfigurationName)/Obj/$(ProjectName)"
- ConfigurationType="2"
- CharacterSet="2"
- WholeProgramOptimization="TRUE">
- <Tool
- Name="VCCLCompilerTool"
- Optimization="2"
- EnableIntrinsicFunctions="TRUE"
- PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;RC4_EXPORTS"
- RuntimeLibrary="0"
- EnableFunctionLevelLinking="TRUE"
- UsePrecompiledHeader="0"
- WarningLevel="3"
- DebugInformationFormat="3"/>
- <Tool
- Name="VCCustomBuildTool"/>
- <Tool
- Name="VCLinkerTool"
- OutputFile="$(OutDir)$(ProjectName).dll"
- LinkIncremental="1"
- GenerateDebugInformation="TRUE"
- SubSystem="2"
- OptimizeReferences="2"
- EnableCOMDATFolding="2"
- TargetMachine="1"/>
- <Tool
- Name="VCMIDLTool"/>
- <Tool
- Name="VCPostBuildEventTool"/>
- <Tool
- Name="VCPreBuildEventTool"/>
- <Tool
- Name="VCPreLinkEventTool"/>
- <Tool
- Name="VCResourceCompilerTool"/>
- <Tool
- Name="VCWebServiceProxyGeneratorTool"/>
- <Tool
- Name="VCXMLDataGeneratorTool"/>
- <Tool
- Name="VCWebDeploymentTool"/>
- <Tool
- Name="VCManagedWrapperGeneratorTool"/>
- <Tool
- Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
- </Configuration>
- <Configuration
- Name="Release Unicode|Win32"
- OutputDirectory="$(SolutionDir)$(ConfigurationName)/Plugins/cryptors/"
- IntermediateDirectory="$(SolutionDir)$(ConfigurationName)/Obj/$(ProjectName)"
- ConfigurationType="2"
- CharacterSet="2"
- WholeProgramOptimization="TRUE">
- <Tool
- Name="VCCLCompilerTool"
- Optimization="2"
- EnableIntrinsicFunctions="TRUE"
- PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;RC4_EXPORTS"
- RuntimeLibrary="0"
- EnableFunctionLevelLinking="TRUE"
- UsePrecompiledHeader="0"
- WarningLevel="3"
- DebugInformationFormat="3"/>
- <Tool
- Name="VCCustomBuildTool"/>
- <Tool
- Name="VCLinkerTool"
- AdditionalDependencies="vc7to6.lib eh7.lib"
- OutputFile="$(OutDir)$(ProjectName).dll"
- LinkIncremental="1"
- AdditionalLibraryDirectories="../../../../lib"
- IgnoreAllDefaultLibraries="TRUE"
- GenerateDebugInformation="TRUE"
- ProgramDatabaseFile="$(OutDir)$(ProjectName).pdb"
- SubSystem="2"
- OptimizeReferences="2"
- EnableCOMDATFolding="2"
- TargetMachine="1"/>
- <Tool
- Name="VCMIDLTool"/>
- <Tool
- Name="VCPostBuildEventTool"/>
- <Tool
- Name="VCPreBuildEventTool"/>
- <Tool
- Name="VCPreLinkEventTool"/>
- <Tool
- Name="VCResourceCompilerTool"/>
- <Tool
- Name="VCWebServiceProxyGeneratorTool"/>
- <Tool
- Name="VCXMLDataGeneratorTool"/>
- <Tool
- Name="VCWebDeploymentTool"/>
- <Tool
- Name="VCManagedWrapperGeneratorTool"/>
- <Tool
- Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
- </Configuration>
- </Configurations>
- <References>
- </References>
- <Files>
- <Filter
- Name="Source Files"
- Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
- UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
- <File
- RelativePath=".\cryptor.c">
- </File>
- </Filter>
- <Filter
- Name="Header Files"
- Filter="h;hpp;hxx;hm;inl;inc;xsd"
- UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}">
- </Filter>
- <Filter
- Name="Resource Files"
- Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
- UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}">
- </Filter>
- </Files>
- <Globals>
- </Globals>
-</VisualStudioProject>
diff --git a/Dbx_mmap_SA/cryptors/RC4/rc4_10.vcxproj b/Dbx_mmap_SA/cryptors/RC4/rc4_10.vcxproj deleted file mode 100644 index b60ab2c..0000000 --- a/Dbx_mmap_SA/cryptors/RC4/rc4_10.vcxproj +++ /dev/null @@ -1,264 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?>
-<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <ItemGroup Label="ProjectConfigurations">
- <ProjectConfiguration Include="Debug|Win32">
- <Configuration>Debug</Configuration>
- <Platform>Win32</Platform>
- </ProjectConfiguration>
- <ProjectConfiguration Include="Debug|x64">
- <Configuration>Debug</Configuration>
- <Platform>x64</Platform>
- </ProjectConfiguration>
- <ProjectConfiguration Include="Release Unicode|Win32">
- <Configuration>Release Unicode</Configuration>
- <Platform>Win32</Platform>
- </ProjectConfiguration>
- <ProjectConfiguration Include="Release Unicode|x64">
- <Configuration>Release Unicode</Configuration>
- <Platform>x64</Platform>
- </ProjectConfiguration>
- <ProjectConfiguration Include="Release|Win32">
- <Configuration>Release</Configuration>
- <Platform>Win32</Platform>
- </ProjectConfiguration>
- <ProjectConfiguration Include="Release|x64">
- <Configuration>Release</Configuration>
- <Platform>x64</Platform>
- </ProjectConfiguration>
- </ItemGroup>
- <PropertyGroup Label="Globals">
- <ProjectGuid>{E38B4212-53BC-49A7-B821-9A99DB4774C6}</ProjectGuid>
- <RootNamespace>rc4</RootNamespace>
- <Keyword>Win32Proj</Keyword>
- </PropertyGroup>
- <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Unicode|Win32'" Label="Configuration">
- <ConfigurationType>DynamicLibrary</ConfigurationType>
- <CharacterSet>MultiByte</CharacterSet>
- <WholeProgramOptimization>true</WholeProgramOptimization>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Unicode|x64'" Label="Configuration">
- <ConfigurationType>DynamicLibrary</ConfigurationType>
- <CharacterSet>MultiByte</CharacterSet>
- <WholeProgramOptimization>true</WholeProgramOptimization>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
- <ConfigurationType>DynamicLibrary</ConfigurationType>
- <CharacterSet>MultiByte</CharacterSet>
- <WholeProgramOptimization>true</WholeProgramOptimization>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
- <ConfigurationType>DynamicLibrary</ConfigurationType>
- <CharacterSet>MultiByte</CharacterSet>
- <WholeProgramOptimization>true</WholeProgramOptimization>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
- <ConfigurationType>DynamicLibrary</ConfigurationType>
- <CharacterSet>Unicode</CharacterSet>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
- <ConfigurationType>DynamicLibrary</ConfigurationType>
- <CharacterSet>Unicode</CharacterSet>
- </PropertyGroup>
- <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
- <ImportGroup Label="ExtensionSettings">
- </ImportGroup>
- <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release Unicode|Win32'" Label="PropertySheets">
- <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
- </ImportGroup>
- <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release Unicode|x64'" Label="PropertySheets">
- <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
- </ImportGroup>
- <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
- <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
- </ImportGroup>
- <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
- <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
- </ImportGroup>
- <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
- <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
- </ImportGroup>
- <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
- <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
- </ImportGroup>
- <PropertyGroup Label="UserMacros" />
- <PropertyGroup>
- <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
- <OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(SolutionDir)$(Configuration)/Plugins/cryptors/\</OutDir>
- <OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">$(SolutionDir)$(Configuration) x64/Plugins/cryptors/\</OutDir>
- <IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(SolutionDir)$(Configuration)/Obj/$(ProjectName)\</IntDir>
- <IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">$(SolutionDir)$(Configuration) x64/Obj/$(ProjectName)\</IntDir>
- <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</LinkIncremental>
- <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</LinkIncremental>
- <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(SolutionDir)$(Configuration)/Plugins/cryptors/\</OutDir>
- <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">$(SolutionDir)$(Configuration) x64/Plugins/cryptors/\</OutDir>
- <IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(SolutionDir)$(Configuration)/Obj/$(ProjectName)\</IntDir>
- <IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">$(SolutionDir)$(Configuration) x64/Obj/$(ProjectName)\</IntDir>
- <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental>
- <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</LinkIncremental>
- <OutDir Condition="'$(Configuration)|$(Platform)'=='Release Unicode|Win32'">$(SolutionDir)$(Configuration)/Plugins/cryptors/\</OutDir>
- <OutDir Condition="'$(Configuration)|$(Platform)'=='Release Unicode|x64'">$(SolutionDir)$(Configuration) x64/Plugins/cryptors/\</OutDir>
- <IntDir Condition="'$(Configuration)|$(Platform)'=='Release Unicode|Win32'">$(SolutionDir)$(Configuration)/Obj/$(ProjectName)\</IntDir>
- <IntDir Condition="'$(Configuration)|$(Platform)'=='Release Unicode|x64'">$(SolutionDir)$(Configuration) x64/Obj/$(ProjectName)\</IntDir>
- <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release Unicode|Win32'">false</LinkIncremental>
- <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release Unicode|x64'">false</LinkIncremental>
- <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
- <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
- <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
- <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
- <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
- <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
- <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release Unicode|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
- <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release Unicode|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
- <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release Unicode|Win32'" />
- <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release Unicode|x64'" />
- <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release Unicode|Win32'" />
- <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release Unicode|x64'" />
- <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
- <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
- <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
- <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
- <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
- <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
- </PropertyGroup>
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
- <ClCompile>
- <Optimization>Disabled</Optimization>
- <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;RC4_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
- <MinimalRebuild>true</MinimalRebuild>
- <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
- <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
- <PrecompiledHeader>
- </PrecompiledHeader>
- <WarningLevel>Level3</WarningLevel>
- <DebugInformationFormat>EditAndContinue</DebugInformationFormat>
- </ClCompile>
- <Link>
- <OutputFile>$(OutDir)$(ProjectName).dll</OutputFile>
- <GenerateDebugInformation>true</GenerateDebugInformation>
- <SubSystem>Windows</SubSystem>
- <TargetMachine>MachineX86</TargetMachine>
- <AdditionalDependencies>
- </AdditionalDependencies>
- </Link>
- </ItemDefinitionGroup>
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
- <ClCompile>
- <Optimization>Disabled</Optimization>
- <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;RC4_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
- <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
- <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
- <PrecompiledHeader>
- </PrecompiledHeader>
- <WarningLevel>Level3</WarningLevel>
- <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
- </ClCompile>
- <Link>
- <OutputFile>$(OutDir)$(ProjectName).dll</OutputFile>
- <GenerateDebugInformation>true</GenerateDebugInformation>
- <SubSystem>Windows</SubSystem>
- <AdditionalDependencies>
- </AdditionalDependencies>
- </Link>
- </ItemDefinitionGroup>
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
- <ClCompile>
- <Optimization>MaxSpeed</Optimization>
- <IntrinsicFunctions>true</IntrinsicFunctions>
- <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;RC4_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
- <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
- <FunctionLevelLinking>true</FunctionLevelLinking>
- <PrecompiledHeader>
- </PrecompiledHeader>
- <WarningLevel>Level3</WarningLevel>
- <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
- </ClCompile>
- <Link>
- <OutputFile>$(OutDir)$(ProjectName).dll</OutputFile>
- <GenerateDebugInformation>true</GenerateDebugInformation>
- <SubSystem>Windows</SubSystem>
- <OptimizeReferences>true</OptimizeReferences>
- <EnableCOMDATFolding>true</EnableCOMDATFolding>
- <TargetMachine>MachineX86</TargetMachine>
- <AdditionalDependencies>
- </AdditionalDependencies>
- </Link>
- </ItemDefinitionGroup>
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
- <ClCompile>
- <Optimization>MaxSpeed</Optimization>
- <IntrinsicFunctions>true</IntrinsicFunctions>
- <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;RC4_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
- <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
- <FunctionLevelLinking>true</FunctionLevelLinking>
- <PrecompiledHeader>
- </PrecompiledHeader>
- <WarningLevel>Level3</WarningLevel>
- <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
- </ClCompile>
- <Link>
- <OutputFile>$(OutDir)$(ProjectName).dll</OutputFile>
- <GenerateDebugInformation>true</GenerateDebugInformation>
- <SubSystem>Windows</SubSystem>
- <OptimizeReferences>true</OptimizeReferences>
- <EnableCOMDATFolding>true</EnableCOMDATFolding>
- <AdditionalDependencies>
- </AdditionalDependencies>
- </Link>
- </ItemDefinitionGroup>
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release Unicode|Win32'">
- <ClCompile>
- <Optimization>MaxSpeed</Optimization>
- <IntrinsicFunctions>true</IntrinsicFunctions>
- <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;RC4_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
- <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
- <FunctionLevelLinking>true</FunctionLevelLinking>
- <PrecompiledHeader>
- </PrecompiledHeader>
- <WarningLevel>Level3</WarningLevel>
- <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
- </ClCompile>
- <Link>
- <AdditionalDependencies>
- </AdditionalDependencies>
- <OutputFile>$(OutDir)$(ProjectName).dll</OutputFile>
- <AdditionalLibraryDirectories>../../../../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
- <GenerateDebugInformation>true</GenerateDebugInformation>
- <ProgramDatabaseFile>$(OutDir)$(ProjectName).pdb</ProgramDatabaseFile>
- <SubSystem>Windows</SubSystem>
- <OptimizeReferences>true</OptimizeReferences>
- <EnableCOMDATFolding>true</EnableCOMDATFolding>
- <TargetMachine>MachineX86</TargetMachine>
- </Link>
- </ItemDefinitionGroup>
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release Unicode|x64'">
- <ClCompile>
- <Optimization>MaxSpeed</Optimization>
- <IntrinsicFunctions>true</IntrinsicFunctions>
- <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;RC4_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
- <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
- <FunctionLevelLinking>true</FunctionLevelLinking>
- <PrecompiledHeader>
- </PrecompiledHeader>
- <WarningLevel>Level3</WarningLevel>
- <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
- </ClCompile>
- <Link>
- <AdditionalDependencies>
- </AdditionalDependencies>
- <OutputFile>$(OutDir)$(ProjectName).dll</OutputFile>
- <AdditionalLibraryDirectories>../../../../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
- <GenerateDebugInformation>true</GenerateDebugInformation>
- <ProgramDatabaseFile>$(OutDir)$(ProjectName).pdb</ProgramDatabaseFile>
- <SubSystem>Windows</SubSystem>
- <OptimizeReferences>true</OptimizeReferences>
- <EnableCOMDATFolding>true</EnableCOMDATFolding>
- </Link>
- </ItemDefinitionGroup>
- <ItemGroup>
- <ClCompile Include="cryptor.c" />
- </ItemGroup>
- <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
- <ImportGroup Label="ExtensionTargets">
- </ImportGroup>
-</Project>
\ No newline at end of file diff --git a/Dbx_mmap_SA/cryptors/RC4/rc4_10.vcxproj.filters b/Dbx_mmap_SA/cryptors/RC4/rc4_10.vcxproj.filters deleted file mode 100644 index 43730c5..0000000 --- a/Dbx_mmap_SA/cryptors/RC4/rc4_10.vcxproj.filters +++ /dev/null @@ -1,22 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?>
-<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <ItemGroup>
- <Filter Include="Source Files">
- <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
- <Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
- </Filter>
- <Filter Include="Header Files">
- <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
- <Extensions>h;hpp;hxx;hm;inl;inc;xsd</Extensions>
- </Filter>
- <Filter Include="Resource Files">
- <UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
- <Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav</Extensions>
- </Filter>
- </ItemGroup>
- <ItemGroup>
- <ClCompile Include="cryptor.c">
- <Filter>Source Files</Filter>
- </ClCompile>
- </ItemGroup>
-</Project>
\ No newline at end of file diff --git a/LangMan/main.c b/LangMan/main.c index d6afea3..a166195 100644 --- a/LangMan/main.c +++ b/LangMan/main.c @@ -29,7 +29,7 @@ static HANDLE hHookModulesLoaded; static PLUGININFOEX pluginInfo={
sizeof(PLUGININFOEX),
- "Language Pack Manager (AlfaMaR)",
+ "Language Pack Manager",
PLUGIN_VERSION,
#if defined(_DEBUG)
"Development build not intended for release. ("__DATE__")", /* autotranslated */
diff --git a/ProfileManager/pmanagerEx.c b/ProfileManager/pmanagerEx.c index 6be6545..63f57f5 100644 --- a/ProfileManager/pmanagerEx.c +++ b/ProfileManager/pmanagerEx.c @@ -25,7 +25,7 @@ TCHAR* pathn; PLUGININFOEX pluginInfo={
sizeof(PLUGININFOEX),
- "Miranda IM Profile Changer Mod (AlfaMaR)",
+ "Miranda IM Profile Changer",
PLUGIN_MAKE_VERSION(0,0,0,3),
"Adds a menu item to change or load a different profile of Miranda IM.",
"Roman Gemini",
diff --git a/UserGuide/main.c b/UserGuide/main.c index 9cd0f93..dae5b7e 100644 --- a/UserGuide/main.c +++ b/UserGuide/main.c @@ -7,9 +7,9 @@ HANDLE hModulesLoaded; PLUGININFOEX pluginInfo={
sizeof(PLUGININFOEX),
- "User Guide Plugin (AlfaMaR)",
+ "User Guide Plugin",
PLUGIN_MAKE_VERSION(0,0,0,1),
- "This plug-in adds the main menu item used to view miranda-im pack user guide",
+ "This plug-in adds the main menu item used to view miranda-im pack user guide.",
"Yasnovidyashii",
"yasnovidyashii@gmail.com",
"© 2009 Mikhail Yuriev",
diff --git a/YAMN/main.cpp b/YAMN/main.cpp index 3a7db58..d8495b5 100644 --- a/YAMN/main.cpp +++ b/YAMN/main.cpp @@ -60,7 +60,7 @@ PLUGININFOEX pluginInfo={ sizeof(PLUGININFOEX),
YAMN_SHORTNAME,
YAMN_VERSION,
- "Mail notifier and browser for Miranda IM. Included POP3 protocol. Mod for Mataes Pack.",
+ "Mail notifier and browser for Miranda IM. Included POP3 protocol.",
"y_b tweety (majvan)",
"francois.mean@skynet.be",
"© (2002-2004 majvan) 2005-2007 tweety y_b Miranda community",
diff --git a/ZeroNotification/version.h b/ZeroNotification/version.h index bb5c930..7295224 100644 --- a/ZeroNotification/version.h +++ b/ZeroNotification/version.h @@ -7,7 +7,7 @@ #if defined(_WIN64)
#define PLUGINNAME "Zero Notifications (x64)"
#elif defined(_UNICODE)
- #define PLUGINNAME "Zero Notifications (AlfaMaR)"
+ #define PLUGINNAME "Zero Notifications (Unicode)"
#else
#define PLUGINNAME "Zero Notifications"
#endif
|