├── .gitattributes ├── .gitignore ├── Demo ├── Demo.csproj ├── DemoKeys │ ├── privkey.sec │ └── pubkey.gpg ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── app.config ├── README.md ├── Starksoft.Aspen.Test ├── Properties │ └── AssemblyInfo.cs ├── Starksoft.Aspen.Test.csproj ├── TestFtpClient.cs ├── TestFtpMlsx.cs ├── TestGpg.cs ├── TestProxyClient.cs └── packages.config ├── Starksoft.Aspen.sln └── Starksoft.Aspen ├── ArrayBuilder.cs ├── ArrayUtils.cs ├── COPYING.LESSER ├── Crc16.cs ├── Crc32.cs ├── Ftps ├── EventArgs │ ├── ConnectionClosedEventArgs.cs │ ├── FtpsRequestEventArgs.cs │ ├── FtpsResponseEventArgs.cs │ ├── FxpCopyAsyncCompletedEventArgs.cs │ ├── GetDirListAsyncCompletedEventArgs.cs │ ├── GetDirListDeepAsyncCompletedEventArgs.cs │ ├── GetFileAsyncCompletedEventArgs.cs │ ├── OpenAsyncCompletedEventArgs.cs │ ├── PutFileAsyncCompletedEventArgs.cs │ ├── TransferCompleteEventArgs.cs │ ├── TransferProgressEventArgs.cs │ └── ValidateServerCertificateEventArgs.cs ├── Exceptions │ ├── FtpSecureConnectionException.cs │ ├── FtpsAsynchronousOperationException.cs │ ├── FtpsAuthenticationException.cs │ ├── FtpsBusyException.cs │ ├── FtpsCertificateValidationException.cs │ ├── FtpsCommandNotSupportedException.cs │ ├── FtpsCommandResponseTimeoutException.cs │ ├── FtpsConnectionBrokenException.cs │ ├── FtpsConnectionClosedException.cs │ ├── FtpsConnectionOpenException.cs │ ├── FtpsDataCompressionException.cs │ ├── FtpsDataConnectionException.cs │ ├── FtpsDataConnectionTimeoutException.cs │ ├── FtpsDataTransferException.cs │ ├── FtpsException.cs │ ├── FtpsFeatureException.cs │ ├── FtpsHashingException.cs │ ├── FtpsHashingInvalidAlgorithmException.cs │ ├── FtpsHashingServerBusyException.cs │ ├── FtpsItemParsingException.cs │ ├── FtpsLoginException.cs │ ├── FtpsNetworkVersionException.cs │ └── FtpsResponseException.cs ├── FtpsBase.cs ├── FtpsClient.cs ├── FtpsFeature.cs ├── FtpsFeatureArgument.cs ├── FtpsFeatureArgumentCollection.cs ├── FtpsFeatureCollection.cs ├── FtpsItem.cs ├── FtpsItemCollection.cs ├── FtpsListItemParser.cs ├── FtpsMlsxItem.cs ├── FtpsMlsxItemParser.cs ├── FtpsRequest.cs ├── FtpsResponse.cs ├── FtpsResponseCollection.cs ├── FtpsResponseQueue.cs ├── FtpsUtilities.cs └── IFtpsItemParser.cs ├── GnuPG ├── DecryptAsyncCompletedEventArgs.cs ├── EncryptAsyncCompletedEventArgs.cs ├── Gpg.cs ├── GpgBadPassphraseException.cs ├── GpgException.cs ├── GpgKey.cs ├── GpgKeyCollection.cs ├── GpgVersion.cs ├── GpgVersionParser.cs └── SignAsyncCompletedEventArgs.cs ├── Lrc.cs ├── Properties ├── AssemblyInfo.cs ├── Settings.Designer.cs ├── Settings.settings └── Starksoft.Aspen.snk ├── Proxy ├── EventArgs │ └── CreateConnectionAsyncCompletedEventArgs.cs ├── Exceptions │ └── ProxyException.cs ├── HttpProxyClient.cs ├── IProxyClient.cs ├── ProxyClientFactory.cs ├── Socks4ProxyClient.cs ├── Socks4aProxyClient.cs ├── Socks5ProxyClient.cs └── Utils.cs ├── Smartcard ├── SCard.cs ├── SCardAdpu.cs ├── SCardAdpuRecv.cs ├── SCardAdpuSend.cs ├── SCardAdpuSendRecv.cs ├── SCardDll.cs └── SCardException.cs ├── Starksoft.Aspen.csproj ├── Starksoft.Aspen.nuspec └── build_nupkg.bat /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/.gitignore -------------------------------------------------------------------------------- /Demo/Demo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Demo/Demo.csproj -------------------------------------------------------------------------------- /Demo/DemoKeys/privkey.sec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Demo/DemoKeys/privkey.sec -------------------------------------------------------------------------------- /Demo/DemoKeys/pubkey.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Demo/DemoKeys/pubkey.gpg -------------------------------------------------------------------------------- /Demo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Demo/Program.cs -------------------------------------------------------------------------------- /Demo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Demo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Demo/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Demo/app.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/README.md -------------------------------------------------------------------------------- /Starksoft.Aspen.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen.Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Starksoft.Aspen.Test/Starksoft.Aspen.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen.Test/Starksoft.Aspen.Test.csproj -------------------------------------------------------------------------------- /Starksoft.Aspen.Test/TestFtpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen.Test/TestFtpClient.cs -------------------------------------------------------------------------------- /Starksoft.Aspen.Test/TestFtpMlsx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen.Test/TestFtpMlsx.cs -------------------------------------------------------------------------------- /Starksoft.Aspen.Test/TestGpg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen.Test/TestGpg.cs -------------------------------------------------------------------------------- /Starksoft.Aspen.Test/TestProxyClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen.Test/TestProxyClient.cs -------------------------------------------------------------------------------- /Starksoft.Aspen.Test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen.Test/packages.config -------------------------------------------------------------------------------- /Starksoft.Aspen.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen.sln -------------------------------------------------------------------------------- /Starksoft.Aspen/ArrayBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/ArrayBuilder.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/ArrayUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/ArrayUtils.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/COPYING.LESSER -------------------------------------------------------------------------------- /Starksoft.Aspen/Crc16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Crc16.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Crc32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Crc32.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Ftps/EventArgs/ConnectionClosedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Ftps/EventArgs/ConnectionClosedEventArgs.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Ftps/EventArgs/FtpsRequestEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Ftps/EventArgs/FtpsRequestEventArgs.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Ftps/EventArgs/FtpsResponseEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Ftps/EventArgs/FtpsResponseEventArgs.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Ftps/EventArgs/FxpCopyAsyncCompletedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Ftps/EventArgs/FxpCopyAsyncCompletedEventArgs.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Ftps/EventArgs/GetDirListAsyncCompletedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Ftps/EventArgs/GetDirListAsyncCompletedEventArgs.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Ftps/EventArgs/GetDirListDeepAsyncCompletedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Ftps/EventArgs/GetDirListDeepAsyncCompletedEventArgs.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Ftps/EventArgs/GetFileAsyncCompletedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Ftps/EventArgs/GetFileAsyncCompletedEventArgs.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Ftps/EventArgs/OpenAsyncCompletedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Ftps/EventArgs/OpenAsyncCompletedEventArgs.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Ftps/EventArgs/PutFileAsyncCompletedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Ftps/EventArgs/PutFileAsyncCompletedEventArgs.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Ftps/EventArgs/TransferCompleteEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Ftps/EventArgs/TransferCompleteEventArgs.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Ftps/EventArgs/TransferProgressEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Ftps/EventArgs/TransferProgressEventArgs.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Ftps/EventArgs/ValidateServerCertificateEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Ftps/EventArgs/ValidateServerCertificateEventArgs.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Ftps/Exceptions/FtpSecureConnectionException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Ftps/Exceptions/FtpSecureConnectionException.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Ftps/Exceptions/FtpsAsynchronousOperationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Ftps/Exceptions/FtpsAsynchronousOperationException.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Ftps/Exceptions/FtpsAuthenticationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Ftps/Exceptions/FtpsAuthenticationException.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Ftps/Exceptions/FtpsBusyException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Ftps/Exceptions/FtpsBusyException.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Ftps/Exceptions/FtpsCertificateValidationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Ftps/Exceptions/FtpsCertificateValidationException.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Ftps/Exceptions/FtpsCommandNotSupportedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Ftps/Exceptions/FtpsCommandNotSupportedException.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Ftps/Exceptions/FtpsCommandResponseTimeoutException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Ftps/Exceptions/FtpsCommandResponseTimeoutException.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Ftps/Exceptions/FtpsConnectionBrokenException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Ftps/Exceptions/FtpsConnectionBrokenException.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Ftps/Exceptions/FtpsConnectionClosedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Ftps/Exceptions/FtpsConnectionClosedException.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Ftps/Exceptions/FtpsConnectionOpenException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Ftps/Exceptions/FtpsConnectionOpenException.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Ftps/Exceptions/FtpsDataCompressionException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Ftps/Exceptions/FtpsDataCompressionException.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Ftps/Exceptions/FtpsDataConnectionException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Ftps/Exceptions/FtpsDataConnectionException.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Ftps/Exceptions/FtpsDataConnectionTimeoutException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Ftps/Exceptions/FtpsDataConnectionTimeoutException.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Ftps/Exceptions/FtpsDataTransferException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Ftps/Exceptions/FtpsDataTransferException.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Ftps/Exceptions/FtpsException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Ftps/Exceptions/FtpsException.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Ftps/Exceptions/FtpsFeatureException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Ftps/Exceptions/FtpsFeatureException.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Ftps/Exceptions/FtpsHashingException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Ftps/Exceptions/FtpsHashingException.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Ftps/Exceptions/FtpsHashingInvalidAlgorithmException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Ftps/Exceptions/FtpsHashingInvalidAlgorithmException.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Ftps/Exceptions/FtpsHashingServerBusyException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Ftps/Exceptions/FtpsHashingServerBusyException.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Ftps/Exceptions/FtpsItemParsingException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Ftps/Exceptions/FtpsItemParsingException.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Ftps/Exceptions/FtpsLoginException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Ftps/Exceptions/FtpsLoginException.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Ftps/Exceptions/FtpsNetworkVersionException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Ftps/Exceptions/FtpsNetworkVersionException.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Ftps/Exceptions/FtpsResponseException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Ftps/Exceptions/FtpsResponseException.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Ftps/FtpsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Ftps/FtpsBase.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Ftps/FtpsClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Ftps/FtpsClient.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Ftps/FtpsFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Ftps/FtpsFeature.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Ftps/FtpsFeatureArgument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Ftps/FtpsFeatureArgument.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Ftps/FtpsFeatureArgumentCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Ftps/FtpsFeatureArgumentCollection.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Ftps/FtpsFeatureCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Ftps/FtpsFeatureCollection.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Ftps/FtpsItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Ftps/FtpsItem.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Ftps/FtpsItemCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Ftps/FtpsItemCollection.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Ftps/FtpsListItemParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Ftps/FtpsListItemParser.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Ftps/FtpsMlsxItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Ftps/FtpsMlsxItem.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Ftps/FtpsMlsxItemParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Ftps/FtpsMlsxItemParser.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Ftps/FtpsRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Ftps/FtpsRequest.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Ftps/FtpsResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Ftps/FtpsResponse.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Ftps/FtpsResponseCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Ftps/FtpsResponseCollection.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Ftps/FtpsResponseQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Ftps/FtpsResponseQueue.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Ftps/FtpsUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Ftps/FtpsUtilities.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Ftps/IFtpsItemParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Ftps/IFtpsItemParser.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/GnuPG/DecryptAsyncCompletedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/GnuPG/DecryptAsyncCompletedEventArgs.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/GnuPG/EncryptAsyncCompletedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/GnuPG/EncryptAsyncCompletedEventArgs.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/GnuPG/Gpg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/GnuPG/Gpg.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/GnuPG/GpgBadPassphraseException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/GnuPG/GpgBadPassphraseException.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/GnuPG/GpgException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/GnuPG/GpgException.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/GnuPG/GpgKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/GnuPG/GpgKey.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/GnuPG/GpgKeyCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/GnuPG/GpgKeyCollection.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/GnuPG/GpgVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/GnuPG/GpgVersion.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/GnuPG/GpgVersionParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/GnuPG/GpgVersionParser.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/GnuPG/SignAsyncCompletedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/GnuPG/SignAsyncCompletedEventArgs.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Lrc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Lrc.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Properties/Settings.settings -------------------------------------------------------------------------------- /Starksoft.Aspen/Properties/Starksoft.Aspen.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Properties/Starksoft.Aspen.snk -------------------------------------------------------------------------------- /Starksoft.Aspen/Proxy/EventArgs/CreateConnectionAsyncCompletedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Proxy/EventArgs/CreateConnectionAsyncCompletedEventArgs.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Proxy/Exceptions/ProxyException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Proxy/Exceptions/ProxyException.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Proxy/HttpProxyClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Proxy/HttpProxyClient.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Proxy/IProxyClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Proxy/IProxyClient.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Proxy/ProxyClientFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Proxy/ProxyClientFactory.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Proxy/Socks4ProxyClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Proxy/Socks4ProxyClient.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Proxy/Socks4aProxyClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Proxy/Socks4aProxyClient.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Proxy/Socks5ProxyClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Proxy/Socks5ProxyClient.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Proxy/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Proxy/Utils.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Smartcard/SCard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Smartcard/SCard.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Smartcard/SCardAdpu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Smartcard/SCardAdpu.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Smartcard/SCardAdpuRecv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Smartcard/SCardAdpuRecv.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Smartcard/SCardAdpuSend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Smartcard/SCardAdpuSend.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Smartcard/SCardAdpuSendRecv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Smartcard/SCardAdpuSendRecv.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Smartcard/SCardDll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Smartcard/SCardDll.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Smartcard/SCardException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Smartcard/SCardException.cs -------------------------------------------------------------------------------- /Starksoft.Aspen/Starksoft.Aspen.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Starksoft.Aspen.csproj -------------------------------------------------------------------------------- /Starksoft.Aspen/Starksoft.Aspen.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentonstark/starksoft-aspen/HEAD/Starksoft.Aspen/Starksoft.Aspen.nuspec -------------------------------------------------------------------------------- /Starksoft.Aspen/build_nupkg.bat: -------------------------------------------------------------------------------- 1 | nuget pack Starksoft.Aspen.nuspec -properties Configuration=Release 2 | --------------------------------------------------------------------------------