batch commit

This commit is contained in:
Scott Settle
2025-07-02 13:05:03 -04:00
parent 97c6cea723
commit 1495ddfd43
14 changed files with 519 additions and 0 deletions

View File

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<assemblyIdentity name="CryptNote.application" version="1.0.0.3" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" />
<description asmv2:publisher="Scott Settle" co.v1:suiteName="ZeroUnderscoreZero" asmv2:product="CryptNote" xmlns="urn:schemas-microsoft-com:asm.v1" />
<deployment install="true" mapFileExtensions="true" co.v1:createDesktopShortcut="true" />
<compatibleFrameworks xmlns="urn:schemas-microsoft-com:clickonce.v2">
<framework targetVersion="4.5.2" profile="Full" supportedRuntime="4.0.30319" />
</compatibleFrameworks>
<dependency>
<dependentAssembly dependencyType="install" codebase="CryptNote.exe.manifest" size="6485">
<assemblyIdentity name="CryptNote.exe" version="1.0.0.3" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" type="win32" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>WiHD83g0dN/NcTzWnO9XTx53KizcqO9RWI1aJ/+Bx/E=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
</asmv1:assembly>

View File

@ -0,0 +1,42 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="CryptNote.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
<section name="Journal.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
</sectionGroup>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>
<userSettings>
<CryptNote.Properties.Settings>
<setting name="Username" serializeAs="String">
<value>Admin</value>
</setting>
<setting name="Password" serializeAs="String">
<value />
</setting>
<setting name="SourceFile" serializeAs="String">
<value>Entery.txt</value>
</setting>
<setting name="IV_per" serializeAs="String">
<value>42</value>
</setting>
</CryptNote.Properties.Settings>
<Journal.Properties.Settings>
<setting name="Username" serializeAs="String">
<value>Admin</value>
</setting>
<setting name="Password" serializeAs="String">
<value />
</setting>
<setting name="SourceFile" serializeAs="String">
<value>Entery.txt</value>
</setting>
<setting name="IV_per" serializeAs="String">
<value>42</value>
</setting>
</Journal.Properties.Settings>
</userSettings>
</configuration>

View File

@ -0,0 +1,126 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<asmv1:assemblyIdentity name="CryptNote.exe" version="1.0.0.3" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" type="win32" />
<description asmv2:iconFile="StoredProcedureCLR.ico" xmlns="urn:schemas-microsoft-com:asm.v1" />
<application />
<entryPoint>
<assemblyIdentity name="CryptNote" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<commandLine file="CryptNote.exe" parameters="" />
</entryPoint>
<trustInfo>
<security>
<applicationRequestMinimum>
<PermissionSet Unrestricted="true" ID="Custom" SameSite="site" />
<defaultAssemblyRequest permissionSetReference="Custom" />
</applicationRequestMinimum>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<!--
UAC Manifest Options
If you want to change the Windows User Account Control level replace the
requestedExecutionLevel node with one of the following.
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
<requestedExecutionLevel level="highestAvailable" uiAccess="false" />
If you want to utilize File and Registry Virtualization for backward
compatibility then delete the requestedExecutionLevel node.
-->
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
</requestedPrivileges>
</security>
</trustInfo>
<dependency>
<dependentOS>
<osVersionInfo>
<os majorVersion="5" minorVersion="1" buildNumber="2600" servicePackMajor="0" />
</osVersionInfo>
</dependentOS>
</dependency>
<dependency>
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
<assemblyIdentity name="Microsoft.Windows.CommonLanguageRuntime" version="4.0.30319.0" />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="CryptNote.exe" size="209392">
<assemblyIdentity name="CryptNote" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>rJ2bNqeHRMcnv15b2gy6k48ed903DE16sNmsTJRdGQY=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="aa\CryptNote.resources.dll" size="17408">
<assemblyIdentity name="CryptNote.resources" version="1.0.0.0" language="aa" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>NuTlHcN2RMo0mCYKjztQbjFC0tAQgsUt3pJ4HN79vkg=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="af\CryptNote.resources.dll" size="17408">
<assemblyIdentity name="CryptNote.resources" version="1.0.0.0" language="af" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>WdN+ULtIVhyUNQS4W9qMgW4Cl9latJqXRI1CmCmrOls=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<file name="CryptNote.exe.config" size="2090">
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>jfzUDvVgqt3WNusQPQvP8ZMAy6Nh6GdE49rLMB5CLsk=</dsig:DigestValue>
</hash>
</file>
<file name="Properties\Underline_11700_12x.png" size="247">
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>Hz+KQbpyQsn09YxtXDB+76sMA+jD/vIOJoi97MUdbzg=</dsig:DigestValue>
</hash>
</file>
<file name="RegistrationScriptRGS.ico" size="45846">
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>FSLeCANlZJ1T+L98dmsyqAffvc4uGx8boM9lu7lP6Po=</dsig:DigestValue>
</hash>
</file>
<file name="StoredProcedureCLR.ico" size="44635">
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>WdFtqo982XIlfeuqVq9Ynw02CU+RA5ixKrCTGODyI90=</dsig:DigestValue>
</hash>
</file>
<file name="WPFPage_gray.ico" size="55786">
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>sLzJYQ2ZxjqH8CTrRSkjDgRtq8lJUK7Wjes9HrPWlIg=</dsig:DigestValue>
</hash>
</file>
</asmv1:assembly>

View File

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<assemblyIdentity name="CryptNote.application" version="1.0.0.3" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" />
<description asmv2:publisher="Scott Settle" co.v1:suiteName="ZeroUnderscoreZero" asmv2:product="CryptNote" xmlns="urn:schemas-microsoft-com:asm.v1" />
<deployment install="true" mapFileExtensions="true" co.v1:createDesktopShortcut="true" />
<compatibleFrameworks xmlns="urn:schemas-microsoft-com:clickonce.v2">
<framework targetVersion="4.5.2" profile="Full" supportedRuntime="4.0.30319" />
</compatibleFrameworks>
<dependency>
<dependentAssembly dependencyType="install" codebase="CryptNote.exe.manifest" size="6485">
<assemblyIdentity name="CryptNote.exe" version="1.0.0.3" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" type="win32" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>WiHD83g0dN/NcTzWnO9XTx53KizcqO9RWI1aJ/+Bx/E=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
</asmv1:assembly>

View File

@ -0,0 +1,42 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="CryptNote.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
<section name="Journal.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
</sectionGroup>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>
<userSettings>
<CryptNote.Properties.Settings>
<setting name="Username" serializeAs="String">
<value>Admin</value>
</setting>
<setting name="Password" serializeAs="String">
<value />
</setting>
<setting name="SourceFile" serializeAs="String">
<value>Entery.txt</value>
</setting>
<setting name="IV_per" serializeAs="String">
<value>42</value>
</setting>
</CryptNote.Properties.Settings>
<Journal.Properties.Settings>
<setting name="Username" serializeAs="String">
<value>Admin</value>
</setting>
<setting name="Password" serializeAs="String">
<value />
</setting>
<setting name="SourceFile" serializeAs="String">
<value>Entery.txt</value>
</setting>
<setting name="IV_per" serializeAs="String">
<value>42</value>
</setting>
</Journal.Properties.Settings>
</userSettings>
</configuration>

View File

@ -0,0 +1,126 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<asmv1:assemblyIdentity name="CryptNote.exe" version="1.0.0.3" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" type="win32" />
<description asmv2:iconFile="StoredProcedureCLR.ico" xmlns="urn:schemas-microsoft-com:asm.v1" />
<application />
<entryPoint>
<assemblyIdentity name="CryptNote" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<commandLine file="CryptNote.exe" parameters="" />
</entryPoint>
<trustInfo>
<security>
<applicationRequestMinimum>
<PermissionSet Unrestricted="true" ID="Custom" SameSite="site" />
<defaultAssemblyRequest permissionSetReference="Custom" />
</applicationRequestMinimum>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<!--
UAC Manifest Options
If you want to change the Windows User Account Control level replace the
requestedExecutionLevel node with one of the following.
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
<requestedExecutionLevel level="highestAvailable" uiAccess="false" />
If you want to utilize File and Registry Virtualization for backward
compatibility then delete the requestedExecutionLevel node.
-->
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
</requestedPrivileges>
</security>
</trustInfo>
<dependency>
<dependentOS>
<osVersionInfo>
<os majorVersion="5" minorVersion="1" buildNumber="2600" servicePackMajor="0" />
</osVersionInfo>
</dependentOS>
</dependency>
<dependency>
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
<assemblyIdentity name="Microsoft.Windows.CommonLanguageRuntime" version="4.0.30319.0" />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="CryptNote.exe" size="209392">
<assemblyIdentity name="CryptNote" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>rJ2bNqeHRMcnv15b2gy6k48ed903DE16sNmsTJRdGQY=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="aa\CryptNote.resources.dll" size="17408">
<assemblyIdentity name="CryptNote.resources" version="1.0.0.0" language="aa" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>NuTlHcN2RMo0mCYKjztQbjFC0tAQgsUt3pJ4HN79vkg=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="af\CryptNote.resources.dll" size="17408">
<assemblyIdentity name="CryptNote.resources" version="1.0.0.0" language="af" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>WdN+ULtIVhyUNQS4W9qMgW4Cl9latJqXRI1CmCmrOls=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<file name="CryptNote.exe.config" size="2090">
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>jfzUDvVgqt3WNusQPQvP8ZMAy6Nh6GdE49rLMB5CLsk=</dsig:DigestValue>
</hash>
</file>
<file name="Properties\Underline_11700_12x.png" size="247">
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>Hz+KQbpyQsn09YxtXDB+76sMA+jD/vIOJoi97MUdbzg=</dsig:DigestValue>
</hash>
</file>
<file name="RegistrationScriptRGS.ico" size="45846">
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>FSLeCANlZJ1T+L98dmsyqAffvc4uGx8boM9lu7lP6Po=</dsig:DigestValue>
</hash>
</file>
<file name="StoredProcedureCLR.ico" size="44635">
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>WdFtqo982XIlfeuqVq9Ynw02CU+RA5ixKrCTGODyI90=</dsig:DigestValue>
</hash>
</file>
<file name="WPFPage_gray.ico" size="55786">
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>sLzJYQ2ZxjqH8CTrRSkjDgRtq8lJUK7Wjes9HrPWlIg=</dsig:DigestValue>
</hash>
</file>
</asmv1:assembly>

View File

@ -0,0 +1,42 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="CryptNote.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
<section name="Journal.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
</sectionGroup>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>
<userSettings>
<CryptNote.Properties.Settings>
<setting name="Username" serializeAs="String">
<value>Admin</value>
</setting>
<setting name="Password" serializeAs="String">
<value />
</setting>
<setting name="SourceFile" serializeAs="String">
<value>Entery.txt</value>
</setting>
<setting name="IV_per" serializeAs="String">
<value>42</value>
</setting>
</CryptNote.Properties.Settings>
<Journal.Properties.Settings>
<setting name="Username" serializeAs="String">
<value>Admin</value>
</setting>
<setting name="Password" serializeAs="String">
<value />
</setting>
<setting name="SourceFile" serializeAs="String">
<value>Entery.txt</value>
</setting>
<setting name="IV_per" serializeAs="String">
<value>42</value>
</setting>
</Journal.Properties.Settings>
</userSettings>
</configuration>

View File

@ -0,0 +1,42 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="CryptNote.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
<section name="Journal.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
</sectionGroup>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>
<userSettings>
<CryptNote.Properties.Settings>
<setting name="Username" serializeAs="String">
<value>Admin</value>
</setting>
<setting name="Password" serializeAs="String">
<value />
</setting>
<setting name="SourceFile" serializeAs="String">
<value>Entery.txt</value>
</setting>
<setting name="IV_per" serializeAs="String">
<value>42</value>
</setting>
</CryptNote.Properties.Settings>
<Journal.Properties.Settings>
<setting name="Username" serializeAs="String">
<value>Admin</value>
</setting>
<setting name="Password" serializeAs="String">
<value />
</setting>
<setting name="SourceFile" serializeAs="String">
<value>Entery.txt</value>
</setting>
<setting name="IV_per" serializeAs="String">
<value>42</value>
</setting>
</Journal.Properties.Settings>
</userSettings>
</configuration>

View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity version="1.0.0.0" name="MyApplication.app"/>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
<security>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<requestedExecutionLevel level="asInvoker" uiAccess="false"/>
</requestedPrivileges>
</security>
</trustInfo>
</assembly>

View File

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<assemblyIdentity name="CryptNote.application" version="1.0.0.3" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" />
<description asmv2:publisher="Scott Settle" co.v1:suiteName="ZeroUnderscoreZero" asmv2:product="CryptNote" xmlns="urn:schemas-microsoft-com:asm.v1" />
<deployment install="true" mapFileExtensions="true" co.v1:createDesktopShortcut="true" />
<compatibleFrameworks xmlns="urn:schemas-microsoft-com:clickonce.v2">
<framework targetVersion="4.5.2" profile="Full" supportedRuntime="4.0.30319" />
</compatibleFrameworks>
<dependency>
<dependentAssembly dependencyType="install" codebase="CryptNote.exe.manifest" size="6485">
<assemblyIdentity name="CryptNote.exe" version="1.0.0.3" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" type="win32" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>WiHD83g0dN/NcTzWnO9XTx53KizcqO9RWI1aJ/+Bx/E=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
</asmv1:assembly>

View File

@ -0,0 +1,25 @@
C:\Users\TomAlex\Documents\Tom Alex\School\Projects\0_01\Journal\Journal\obj\Debug\CryptNote.csprojResolveAssemblyReference.cache
C:\Users\TomAlex\Documents\Tom Alex\School\Projects\0_01\Journal\Journal\obj\Debug\Journal._64bitCreateAccount.resources
C:\Users\TomAlex\Documents\Tom Alex\School\Projects\0_01\Journal\Journal\obj\Debug\Journal.DialogWindow.resources
C:\Users\TomAlex\Documents\Tom Alex\School\Projects\0_01\Journal\Journal\obj\Debug\Journal.Form1.resources
C:\Users\TomAlex\Documents\Tom Alex\School\Projects\0_01\Journal\Journal\obj\Debug\Journal.UsernamePassword.resources
C:\Users\TomAlex\Documents\Tom Alex\School\Projects\0_01\Journal\Journal\obj\Debug\Journal.Info.resources
C:\Users\TomAlex\Documents\Tom Alex\School\Projects\0_01\Journal\Journal\obj\Debug\Journal.Login.resources
C:\Users\TomAlex\Documents\Tom Alex\School\Projects\0_01\Journal\Journal\obj\Debug\Journal.OpenSource.resources
C:\Users\TomAlex\Documents\Tom Alex\School\Projects\0_01\Journal\Journal\obj\Debug\Journal.Properties.Resources.resources
C:\Users\TomAlex\Documents\Tom Alex\School\Projects\0_01\Journal\Journal\obj\Debug\Journal.Form1.aa.resources
C:\Users\TomAlex\Documents\Tom Alex\School\Projects\0_01\Journal\Journal\obj\Debug\Journal.Form1.af.resources
C:\Users\TomAlex\Documents\Tom Alex\School\Projects\0_01\Journal\Journal\obj\Debug\CryptNote.csproj.GenerateResource.Cache
C:\Users\TomAlex\Documents\Tom Alex\School\Projects\0_01\Journal\Journal\bin\Debug\CryptNote.exe.config
C:\Users\TomAlex\Documents\Tom Alex\School\Projects\0_01\Journal\Journal\bin\Debug\CryptNote.exe
C:\Users\TomAlex\Documents\Tom Alex\School\Projects\0_01\Journal\Journal\bin\Debug\CryptNote.pdb
C:\Users\TomAlex\Documents\Tom Alex\School\Projects\0_01\Journal\Journal\bin\Debug\aa\CryptNote.resources.dll
C:\Users\TomAlex\Documents\Tom Alex\School\Projects\0_01\Journal\Journal\bin\Debug\af\CryptNote.resources.dll
C:\Users\TomAlex\Documents\Tom Alex\School\Projects\0_01\Journal\Journal\obj\Debug\aa\CryptNote.resources.dll
C:\Users\TomAlex\Documents\Tom Alex\School\Projects\0_01\Journal\Journal\obj\Debug\af\CryptNote.resources.dll
C:\Users\TomAlex\Documents\Tom Alex\School\Projects\0_01\Journal\Journal\obj\Debug\CryptNote.exe
C:\Users\TomAlex\Documents\Tom Alex\School\Projects\0_01\Journal\Journal\obj\Debug\CryptNote.pdb
C:\Users\TomAlex\Documents\Tom Alex\School\Projects\0_01\Journal\Journal\bin\Debug\CryptNote.exe.manifest
C:\Users\TomAlex\Documents\Tom Alex\School\Projects\0_01\Journal\Journal\bin\Debug\CryptNote.application
C:\Users\TomAlex\Documents\Tom Alex\School\Projects\0_01\Journal\Journal\obj\Debug\CryptNote.exe.manifest
C:\Users\TomAlex\Documents\Tom Alex\School\Projects\0_01\Journal\Journal\obj\Debug\CryptNote.application