Files
keepass2android/src/TwofishCipher
tenzap c933748077 Fix gitignore with Resource.designer.cs/Resource.Designer.cs
Default value for <AndroidResgenFile> is Resource.designer.cs
https://learn.microsoft.com/en-us/xamarin/android/deploy-test/building-apps/build-properties#androidresgenfile

Two projects were using <AndroidResgenFile>Resources\Resource.Designer.cs</AndroidResgenFile>
All other projects use <AndroidResgenFile>Resources\Resource.designer.cs</AndroidResgenFile>
Difference is one has uppercase D, the other lowercase d

.gitignore already has a rule for 'Resource.designer.cs' in it.

The two projects that were with Resource.Designer.cs needed either a specific line in gitignore
or weren't actually ignored.

Selected fix here is to rename the file with a lowercase 'd' instead of uppercase.
This permits to remove one line from .gitignore and keep the other file really ignored
2022-12-19 19:42:26 +01:00
..
2013-09-03 23:10:59 +02:00
2013-09-16 21:44:45 +02:00
2014-05-28 11:01:20 +02:00
2013-09-03 23:10:59 +02:00
2013-09-03 23:10:59 +02:00
2013-09-03 23:10:59 +02:00
2013-09-03 23:10:59 +02:00

Twofish Cipher for KeePass Password Safe
Copyright (C) 2009-2010 SEG Tech <me@gogogadgetscott.info>

PREFACE

Enables KeePass to encrypt databases using the Twofish algorithm.

REQUIREMENTS

This plugin requires KeePass 2.0x.

INSTALLATION

Just copy TwofishCipher.dll to the same directory where KeePass.exe is located
and KeePass should automatically recognize and load the plugin.

CREDITS

Many thanks to Dominik Reichl for creating KeePass Password Safe, without which,
this plugin would not exist. Thanks also goes to Shaun Wilde for C# 
implementation of the Twofish cipher as posted on The Code Project.