├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md └── teardrop ├── .vs └── teardrop │ └── v16 │ └── .suo ├── packages ├── BouncyCastle.1.8.9 │ ├── .signature.p7s │ ├── BouncyCastle.1.8.9.nupkg │ ├── README.md │ └── lib │ │ └── BouncyCastle.Crypto.dll ├── DeviceId.5.2.0 │ ├── .signature.p7s │ ├── DeviceId.5.2.0.nupkg │ └── lib │ │ ├── net35 │ │ ├── DeviceId.dll │ │ └── DeviceId.xml │ │ ├── net40 │ │ ├── DeviceId.dll │ │ └── DeviceId.xml │ │ └── netstandard2.0 │ │ ├── DeviceId.dll │ │ └── DeviceId.xml ├── Google.Protobuf.3.15.8 │ ├── .signature.p7s │ ├── Google.Protobuf.3.15.8.nupkg │ └── lib │ │ ├── net45 │ │ ├── Google.Protobuf.dll │ │ ├── Google.Protobuf.pdb │ │ └── Google.Protobuf.xml │ │ ├── netstandard1.1 │ │ ├── Google.Protobuf.dll │ │ ├── Google.Protobuf.pdb │ │ └── Google.Protobuf.xml │ │ └── netstandard2.0 │ │ ├── Google.Protobuf.dll │ │ ├── Google.Protobuf.pdb │ │ └── Google.Protobuf.xml ├── K4os.Compression.LZ4.1.2.6 │ ├── .signature.p7s │ ├── K4os.Compression.LZ4.1.2.6.nupkg │ └── lib │ │ ├── net45 │ │ ├── K4os.Compression.LZ4.dll │ │ └── K4os.Compression.LZ4.xml │ │ ├── net46 │ │ ├── K4os.Compression.LZ4.dll │ │ └── K4os.Compression.LZ4.xml │ │ ├── netstandard1.6 │ │ ├── K4os.Compression.LZ4.dll │ │ └── K4os.Compression.LZ4.xml │ │ └── netstandard2.0 │ │ ├── K4os.Compression.LZ4.dll │ │ └── K4os.Compression.LZ4.xml ├── K4os.Compression.LZ4.Streams.1.2.6 │ ├── .signature.p7s │ ├── K4os.Compression.LZ4.Streams.1.2.6.nupkg │ └── lib │ │ ├── net45 │ │ ├── K4os.Compression.LZ4.Streams.dll │ │ └── K4os.Compression.LZ4.Streams.xml │ │ ├── net46 │ │ ├── K4os.Compression.LZ4.Streams.dll │ │ └── K4os.Compression.LZ4.Streams.xml │ │ ├── netstandard1.6 │ │ ├── K4os.Compression.LZ4.Streams.dll │ │ └── K4os.Compression.LZ4.Streams.xml │ │ ├── netstandard2.0 │ │ ├── K4os.Compression.LZ4.Streams.dll │ │ └── K4os.Compression.LZ4.Streams.xml │ │ └── netstandard2.1 │ │ ├── K4os.Compression.LZ4.Streams.dll │ │ └── K4os.Compression.LZ4.Streams.xml ├── K4os.Hash.xxHash.1.0.6 │ ├── .signature.p7s │ ├── K4os.Hash.xxHash.1.0.6.nupkg │ └── lib │ │ ├── net45 │ │ ├── K4os.Hash.xxHash.dll │ │ └── K4os.Hash.xxHash.xml │ │ ├── net46 │ │ ├── K4os.Hash.xxHash.dll │ │ └── K4os.Hash.xxHash.xml │ │ ├── netstandard1.6 │ │ ├── K4os.Hash.xxHash.dll │ │ └── K4os.Hash.xxHash.xml │ │ └── netstandard2.0 │ │ ├── K4os.Hash.xxHash.dll │ │ └── K4os.Hash.xxHash.xml ├── MySql.Data.8.0.24 │ ├── .signature.p7s │ ├── MySql.Data.8.0.24.nupkg │ └── lib │ │ ├── net452 │ │ ├── MySql.Data.dll │ │ ├── MySql.Data.xml │ │ ├── Ubiety.Dns.Core.dll │ │ └── Zstandard.Net.dll │ │ ├── net48 │ │ ├── MySql.Data.dll │ │ ├── MySql.Data.xml │ │ ├── Ubiety.Dns.Core.dll │ │ └── Zstandard.Net.dll │ │ ├── net5.0 │ │ ├── MySql.Data.dll │ │ ├── MySql.Data.xml │ │ ├── Ubiety.Dns.Core.dll │ │ └── Zstandard.Net.dll │ │ ├── netstandard2.0 │ │ ├── MySql.Data.dll │ │ ├── MySql.Data.xml │ │ ├── Ubiety.Dns.Core.dll │ │ └── Zstandard.Net.dll │ │ └── netstandard2.1 │ │ ├── MySql.Data.dll │ │ ├── MySql.Data.xml │ │ ├── Ubiety.Dns.Core.dll │ │ └── Zstandard.Net.dll ├── System.Buffers.4.5.1 │ ├── .signature.p7s │ ├── LICENSE.TXT │ ├── System.Buffers.4.5.1.nupkg │ ├── THIRD-PARTY-NOTICES.TXT │ ├── lib │ │ ├── net461 │ │ │ ├── System.Buffers.dll │ │ │ └── System.Buffers.xml │ │ ├── netcoreapp2.0 │ │ │ └── _._ │ │ ├── netstandard1.1 │ │ │ ├── System.Buffers.dll │ │ │ └── System.Buffers.xml │ │ ├── netstandard2.0 │ │ │ ├── System.Buffers.dll │ │ │ └── System.Buffers.xml │ │ └── uap10.0.16299 │ │ │ └── _._ │ ├── ref │ │ ├── net45 │ │ │ ├── System.Buffers.dll │ │ │ └── System.Buffers.xml │ │ ├── netcoreapp2.0 │ │ │ └── _._ │ │ ├── netstandard1.1 │ │ │ ├── System.Buffers.dll │ │ │ └── System.Buffers.xml │ │ ├── netstandard2.0 │ │ │ ├── System.Buffers.dll │ │ │ └── System.Buffers.xml │ │ └── uap10.0.16299 │ │ │ └── _._ │ ├── useSharedDesignerContext.txt │ └── version.txt ├── System.Memory.4.5.4 │ ├── .signature.p7s │ ├── LICENSE.TXT │ ├── System.Memory.4.5.4.nupkg │ ├── THIRD-PARTY-NOTICES.TXT │ ├── lib │ │ ├── net461 │ │ │ ├── System.Memory.dll │ │ │ └── System.Memory.xml │ │ ├── netcoreapp2.1 │ │ │ └── _._ │ │ ├── netstandard1.1 │ │ │ ├── System.Memory.dll │ │ │ └── System.Memory.xml │ │ └── netstandard2.0 │ │ │ ├── System.Memory.dll │ │ │ └── System.Memory.xml │ ├── ref │ │ └── netcoreapp2.1 │ │ │ └── _._ │ ├── useSharedDesignerContext.txt │ └── version.txt ├── System.Numerics.Vectors.4.5.0 │ ├── .signature.p7s │ ├── LICENSE.TXT │ ├── System.Numerics.Vectors.4.5.0.nupkg │ ├── THIRD-PARTY-NOTICES.TXT │ ├── lib │ │ ├── MonoAndroid10 │ │ │ └── _._ │ │ ├── MonoTouch10 │ │ │ └── _._ │ │ ├── net46 │ │ │ ├── System.Numerics.Vectors.dll │ │ │ └── System.Numerics.Vectors.xml │ │ ├── netcoreapp2.0 │ │ │ └── _._ │ │ ├── netstandard1.0 │ │ │ ├── System.Numerics.Vectors.dll │ │ │ └── System.Numerics.Vectors.xml │ │ ├── netstandard2.0 │ │ │ ├── System.Numerics.Vectors.dll │ │ │ └── System.Numerics.Vectors.xml │ │ ├── portable-net45+win8+wp8+wpa81 │ │ │ ├── System.Numerics.Vectors.dll │ │ │ └── System.Numerics.Vectors.xml │ │ ├── uap10.0.16299 │ │ │ └── _._ │ │ ├── xamarinios10 │ │ │ └── _._ │ │ ├── xamarinmac20 │ │ │ └── _._ │ │ ├── xamarintvos10 │ │ │ └── _._ │ │ └── xamarinwatchos10 │ │ │ └── _._ │ ├── ref │ │ ├── MonoAndroid10 │ │ │ └── _._ │ │ ├── MonoTouch10 │ │ │ └── _._ │ │ ├── net45 │ │ │ ├── System.Numerics.Vectors.dll │ │ │ └── System.Numerics.Vectors.xml │ │ ├── net46 │ │ │ ├── System.Numerics.Vectors.dll │ │ │ └── System.Numerics.Vectors.xml │ │ ├── netcoreapp2.0 │ │ │ └── _._ │ │ ├── netstandard1.0 │ │ │ ├── System.Numerics.Vectors.dll │ │ │ └── System.Numerics.Vectors.xml │ │ ├── netstandard2.0 │ │ │ ├── System.Numerics.Vectors.dll │ │ │ └── System.Numerics.Vectors.xml │ │ ├── uap10.0.16299 │ │ │ └── _._ │ │ ├── xamarinios10 │ │ │ └── _._ │ │ ├── xamarinmac20 │ │ │ └── _._ │ │ ├── xamarintvos10 │ │ │ └── _._ │ │ └── xamarinwatchos10 │ │ │ └── _._ │ ├── useSharedDesignerContext.txt │ └── version.txt └── System.Runtime.CompilerServices.Unsafe.5.0.0 │ ├── .signature.p7s │ ├── Icon.png │ ├── LICENSE.TXT │ ├── System.Runtime.CompilerServices.Unsafe.5.0.0.nupkg │ ├── THIRD-PARTY-NOTICES.TXT │ ├── lib │ ├── net45 │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ └── System.Runtime.CompilerServices.Unsafe.xml │ ├── netcoreapp2.0 │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ └── System.Runtime.CompilerServices.Unsafe.xml │ ├── netstandard1.0 │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ └── System.Runtime.CompilerServices.Unsafe.xml │ └── netstandard2.0 │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ └── System.Runtime.CompilerServices.Unsafe.xml │ ├── ref │ ├── net461 │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ └── System.Runtime.CompilerServices.Unsafe.xml │ ├── netstandard1.0 │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ └── System.Runtime.CompilerServices.Unsafe.xml │ ├── netstandard2.0 │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ └── System.Runtime.CompilerServices.Unsafe.xml │ └── netstandard2.1 │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ └── System.Runtime.CompilerServices.Unsafe.xml │ ├── useSharedDesignerContext.txt │ └── version.txt ├── teardrop.sln └── teardrop ├── App.config ├── Crypto.cs ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── app.manifest ├── bin └── Debug │ ├── BouncyCastle.Crypto.dll │ ├── DeviceId.dll │ ├── DeviceId.xml │ ├── Google.Protobuf.dll │ ├── Google.Protobuf.pdb │ ├── Google.Protobuf.xml │ ├── K4os.Compression.LZ4.Streams.dll │ ├── K4os.Compression.LZ4.Streams.xml │ ├── K4os.Compression.LZ4.dll │ ├── K4os.Compression.LZ4.xml │ ├── K4os.Hash.xxHash.dll │ ├── K4os.Hash.xxHash.xml │ ├── MySql.Data.dll │ ├── MySql.Data.xml │ ├── System.Buffers.dll │ ├── System.Buffers.xml │ ├── System.Memory.dll │ ├── System.Memory.xml │ ├── System.Numerics.Vectors.dll │ ├── System.Numerics.Vectors.xml │ ├── System.Runtime.CompilerServices.Unsafe.dll │ ├── System.Runtime.CompilerServices.Unsafe.xml │ ├── Ubiety.Dns.Core.dll │ ├── Zstandard.Net.dll │ ├── log.txt │ ├── message.html │ ├── teardrop.exe │ ├── teardrop.exe.config │ └── teardrop.pdb ├── obj └── Debug │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── teardrop.Form1.resources │ ├── teardrop.Properties.Resources.resources │ ├── teardrop.csproj.AssemblyReference.cache │ ├── teardrop.csproj.CoreCompileInputs.cache │ ├── teardrop.csproj.FileListAbsolute.txt │ ├── teardrop.csproj.GenerateResource.cache │ └── teardrop.pdb ├── packages.config └── teardrop.csproj /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 4 | patreon: shydevil 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | otechie: # Replace with a single Otechie username 12 | custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] 13 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior: 15 | 1. Go to '...' 16 | 2. Click on '....' 17 | 3. Scroll down to '....' 18 | 4. See error 19 | 20 | **Expected behavior** 21 | A clear and concise description of what you expected to happen. 22 | 23 | **Screenshots** 24 | If applicable, add screenshots to help explain your problem. 25 | 26 | **Additional context** 27 | Add any other context about the problem here. 28 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Describe alternatives you've considered** 17 | A clear and concise description of any alternative solutions or features you've considered. 18 | 19 | **Additional context** 20 | Add any other context or screenshots about the feature request here. 21 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | We as members, contributors, and leaders pledge to make participation in our 6 | community a harassment-free experience for everyone, regardless of age, body 7 | size, visible or invisible disability, ethnicity, sex characteristics, gender 8 | identity and expression, level of experience, education, socio-economic status, 9 | nationality, personal appearance, race, religion, or sexual identity 10 | and orientation. 11 | 12 | We pledge to act and interact in ways that contribute to an open, welcoming, 13 | diverse, inclusive, and healthy community. 14 | 15 | ## Our Standards 16 | 17 | Examples of behavior that contributes to a positive environment for our 18 | community include: 19 | 20 | * Demonstrating empathy and kindness toward other people 21 | * Being respectful of differing opinions, viewpoints, and experiences 22 | * Giving and gracefully accepting constructive feedback 23 | * Accepting responsibility and apologizing to those affected by our mistakes, 24 | and learning from the experience 25 | * Focusing on what is best not just for us as individuals, but for the 26 | overall community 27 | 28 | Examples of unacceptable behavior include: 29 | 30 | * The use of sexualized language or imagery, and sexual attention or 31 | advances of any kind 32 | * Trolling, insulting or derogatory comments, and personal or political attacks 33 | * Public or private harassment 34 | * Publishing others' private information, such as a physical or email 35 | address, without their explicit permission 36 | * Other conduct which could reasonably be considered inappropriate in a 37 | professional setting 38 | 39 | ## Enforcement Responsibilities 40 | 41 | Community leaders are responsible for clarifying and enforcing our standards of 42 | acceptable behavior and will take appropriate and fair corrective action in 43 | response to any behavior that they deem inappropriate, threatening, offensive, 44 | or harmful. 45 | 46 | Community leaders have the right and responsibility to remove, edit, or reject 47 | comments, commits, code, wiki edits, issues, and other contributions that are 48 | not aligned to this Code of Conduct, and will communicate reasons for moderation 49 | decisions when appropriate. 50 | 51 | ## Scope 52 | 53 | This Code of Conduct applies within all community spaces, and also applies when 54 | an individual is officially representing the community in public spaces. 55 | Examples of representing our community include using an official e-mail address, 56 | posting via an official social media account, or acting as an appointed 57 | representative at an online or offline event. 58 | 59 | ## Enforcement 60 | 61 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 62 | reported to the community leaders responsible for enforcement at 63 | Discord: "Shy Devil#0001" or Email: admin@shy-devil.me. 64 | All complaints will be reviewed and investigated promptly and fairly. 65 | 66 | All community leaders are obligated to respect the privacy and security of the 67 | reporter of any incident. 68 | 69 | ## Enforcement Guidelines 70 | 71 | Community leaders will follow these Community Impact Guidelines in determining 72 | the consequences for any action they deem in violation of this Code of Conduct: 73 | 74 | ### 1. Correction 75 | 76 | **Community Impact**: Use of inappropriate language or other behavior deemed 77 | unprofessional or unwelcome in the community. 78 | 79 | **Consequence**: A private, written warning from community leaders, providing 80 | clarity around the nature of the violation and an explanation of why the 81 | behavior was inappropriate. A public apology may be requested. 82 | 83 | ### 2. Warning 84 | 85 | **Community Impact**: A violation through a single incident or series 86 | of actions. 87 | 88 | **Consequence**: A warning with consequences for continued behavior. No 89 | interaction with the people involved, including unsolicited interaction with 90 | those enforcing the Code of Conduct, for a specified period of time. This 91 | includes avoiding interactions in community spaces as well as external channels 92 | like social media. Violating these terms may lead to a temporary or 93 | permanent ban. 94 | 95 | ### 3. Temporary Ban 96 | 97 | **Community Impact**: A serious violation of community standards, including 98 | sustained inappropriate behavior. 99 | 100 | **Consequence**: A temporary ban from any sort of interaction or public 101 | communication with the community for a specified period of time. No public or 102 | private interaction with the people involved, including unsolicited interaction 103 | with those enforcing the Code of Conduct, is allowed during this period. 104 | Violating these terms may lead to a permanent ban. 105 | 106 | ### 4. Permanent Ban 107 | 108 | **Community Impact**: Demonstrating a pattern of violation of community 109 | standards, including sustained inappropriate behavior, harassment of an 110 | individual, or aggression toward or disparagement of classes of individuals. 111 | 112 | **Consequence**: A permanent ban from any sort of public interaction within 113 | the community. 114 | 115 | ## Attribution 116 | 117 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], 118 | version 2.0, available at 119 | https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. 120 | 121 | Community Impact Guidelines were inspired by [Mozilla's code of conduct 122 | enforcement ladder](https://github.com/mozilla/diversity). 123 | 124 | [homepage]: https://www.contributor-covenant.org 125 | 126 | For answers to common questions about this code of conduct, see the FAQ at 127 | https://www.contributor-covenant.org/faq. Translations are available at 128 | https://www.contributor-covenant.org/translations. 129 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing? With pleasure! 2 | If you want to contribute to this project you have to follow some very simple rules in order to keep beeing organized. 3 | 4 |
5 | 6 | # Things I'd be happy about 7 | - Code Cleanups 8 | - General Code Improvements 9 | - Possible Bug fixes 10 | - New Features 11 | - Simplifying existing Code 12 | - Readme Typo Fixes 13 | - Documentation Additions & Typo fixes 14 | 15 |
16 | 17 | # Why should you contribute? 18 | After all it's up to you. This project was made with love, and it seems to be a unique, updated solution for the purpose this application is serving. If you know how to make 19 | certain pieces of this application better, faster and stronger, I'd like you to be a part of the people who helped making this project better : ) 20 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # teardrop - Ransomware ![Dev Status](https://img.shields.io/badge/Development-Paused-orange) 2 | Welcome to the teardrop Ransomware Project. This project was created for educational purposes only. If you want to harm someone, it is your fault if something happens. I do not take any responsibility for damage that might've been caused by one of your actions. In order to use my finished code read the terms and conditions in the [LICENSE](LICENSE) file 3 | 4 | 5 |

6 | 7 | If you want to help me or send me motivation, star this repository and share it with like minded people :) 8 | 9 | 10 |
11 | 12 | ## Features 13 | - Send Machine Data to SQL Server 14 | - Encrypt connected devices ( [#7](https://github.com/hackthedev/teardrop/issues/7) ) 15 | - Log errors to file 16 | - Disable/Enable Taskmanager 17 | - Hide from Taskbar 18 | - Overlap other applications 19 | - Multi-Threading 20 | - Extension Whitelist 21 | - Simulate Mouse Click 22 | - Generate unique Device Id 23 | - Make Application Unkillable 24 | - Register Application in StartUp 25 | - Theme "System" 26 | - Encryption [Fuse](https://github.com/hackthedev/teardrop/blob/master/teardrop/teardrop/Form1.cs#L450-L463) 27 | 28 |
29 | 30 | ## Help 31 | If you're stuck with doing something on this project you can hit me up on Discord (above link) or via Email (admin [at] shy-devil [dot] me. Issues will still be resolved as good as possible. 32 | 33 |
34 | 35 | ## Updates? 36 | I've planned to keep updating this project and fixing bugs. If you've found any bug, you can [create a new issue](https://github.com/hackthedev/teardrop/issues). There might be updates where I only cleaned up the Code. It is planned to also implement new Features. If you want to stay up-to-date, follow me on Github. 37 | 38 |
39 | 40 | ## Badge Meanings 41 | | Status | Description | 42 | | --- | --- | 43 | | ![Dev Paused](https://img.shields.io/badge/Development-Paused-orange) | The development is currently paused because im busy. I'll try to help tho | 44 | | ![Dev Continued](https://img.shields.io/badge/Development-Continued-informational) | Im ready to work on the project and try to improve it as good as I can. | 45 | | ![Dev Canceled](https://img.shields.io/badge/Development-Canceled-lightgrey) | The project was canceled for a unknown reason which will be given at the right timing | 46 | 47 | -------------------------------------------------------------------------------- /teardrop/.vs/teardrop/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/.vs/teardrop/v16/.suo -------------------------------------------------------------------------------- /teardrop/packages/BouncyCastle.1.8.9/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/BouncyCastle.1.8.9/.signature.p7s -------------------------------------------------------------------------------- /teardrop/packages/BouncyCastle.1.8.9/BouncyCastle.1.8.9.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/BouncyCastle.1.8.9/BouncyCastle.1.8.9.nupkg -------------------------------------------------------------------------------- /teardrop/packages/BouncyCastle.1.8.9/README.md: -------------------------------------------------------------------------------- 1 | # The Bouncy Castle Crypto Package For C Sharp 2 | 3 | The Bouncy Castle Crypto package is a C\# implementation of cryptographic algorithms and protocols, it was developed by the Legion of the Bouncy Castle, a registered Australian Charity, with a little help! The Legion, and the latest goings on with this package, can be found at [http://www.bouncycastle.org](http://www.bouncycastle.org). In addition to providing basic cryptography algorithms, the package also provides support for CMS, TSP, X.509 certificate generation and a variety of other standards such as OpenPGP. 4 | 5 | The Legion also gratefully acknowledges the contributions made to this package by others (see [here](http://www.bouncycastle.org/csharp/contributors.html) for the current list). If you would like to contribute to our efforts please feel free to get in touch with us or visit our [donations page](https://www.bouncycastle.org/donate), sponsor some specific work, or purchase a support contract through [Crypto Workshop](http://www.cryptoworkshop.com). 6 | 7 | Except where otherwise stated, this software is distributed under a license based on the MIT X Consortium license. To view the license, [see here](http://www.bouncycastle.org/licence.html). The OpenPGP library also includes a modified BZIP2 library which is licensed under the [Apache Software License, Version 2.0](http://www.apache.org/licenses/). 8 | 9 | **Note**: this source tree is not the FIPS version of the APIs - if you are interested in our FIPS version please contact us directly at [office@bouncycastle.org](mailto:office@bouncycastle.org). 10 | 11 | ## Mailing Lists 12 | 13 | For those who are interested, there are 2 mailing lists for participation in this project. To subscribe use the links below and include the word subscribe in the message body. (To unsubscribe, replace **subscribe** with **unsubscribe** in the message body) 14 | 15 | * [announce-crypto-csharp-request@bouncycastle.org](mailto:announce-crypto-csharp-request@bouncycastle.org) 16 | This mailing list is for new release announcements only, general subscribers cannot post to it. 17 | * [dev-crypto-csharp-request@bouncycastle.org](mailto:dev-crypto-csharp-request@bouncycastle.org) 18 | This mailing list is for discussion of development of the package. This includes bugs, comments, requests for enhancements, questions about use or operation. 19 | 20 | **NOTE:**You need to be subscribed to send mail to the above mailing list. 21 | 22 | ## Feedback 23 | 24 | If you want to provide feedback directly to the members of **The Legion** then please use [feedback-crypto@bouncycastle.org](mailto:feedback-crypto@bouncycastle.org), if you want to help this project survive please consider [donating](https://www.bouncycastle.org/donate). 25 | 26 | For bug reporting/requests you can report issues here on github, via feedback-crypto if required, and we also have a [Jira issue tracker](http://www.bouncycastle.org/jira). We will accept pull requests based on this repository as well. 27 | 28 | ## Finally 29 | 30 | Enjoy! 31 | -------------------------------------------------------------------------------- /teardrop/packages/BouncyCastle.1.8.9/lib/BouncyCastle.Crypto.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/BouncyCastle.1.8.9/lib/BouncyCastle.Crypto.dll -------------------------------------------------------------------------------- /teardrop/packages/DeviceId.5.2.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/DeviceId.5.2.0/.signature.p7s -------------------------------------------------------------------------------- /teardrop/packages/DeviceId.5.2.0/DeviceId.5.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/DeviceId.5.2.0/DeviceId.5.2.0.nupkg -------------------------------------------------------------------------------- /teardrop/packages/DeviceId.5.2.0/lib/net35/DeviceId.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/DeviceId.5.2.0/lib/net35/DeviceId.dll -------------------------------------------------------------------------------- /teardrop/packages/DeviceId.5.2.0/lib/net40/DeviceId.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/DeviceId.5.2.0/lib/net40/DeviceId.dll -------------------------------------------------------------------------------- /teardrop/packages/DeviceId.5.2.0/lib/netstandard2.0/DeviceId.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/DeviceId.5.2.0/lib/netstandard2.0/DeviceId.dll -------------------------------------------------------------------------------- /teardrop/packages/Google.Protobuf.3.15.8/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/Google.Protobuf.3.15.8/.signature.p7s -------------------------------------------------------------------------------- /teardrop/packages/Google.Protobuf.3.15.8/Google.Protobuf.3.15.8.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/Google.Protobuf.3.15.8/Google.Protobuf.3.15.8.nupkg -------------------------------------------------------------------------------- /teardrop/packages/Google.Protobuf.3.15.8/lib/net45/Google.Protobuf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/Google.Protobuf.3.15.8/lib/net45/Google.Protobuf.dll -------------------------------------------------------------------------------- /teardrop/packages/Google.Protobuf.3.15.8/lib/net45/Google.Protobuf.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/Google.Protobuf.3.15.8/lib/net45/Google.Protobuf.pdb -------------------------------------------------------------------------------- /teardrop/packages/Google.Protobuf.3.15.8/lib/netstandard1.1/Google.Protobuf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/Google.Protobuf.3.15.8/lib/netstandard1.1/Google.Protobuf.dll -------------------------------------------------------------------------------- /teardrop/packages/Google.Protobuf.3.15.8/lib/netstandard1.1/Google.Protobuf.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/Google.Protobuf.3.15.8/lib/netstandard1.1/Google.Protobuf.pdb -------------------------------------------------------------------------------- /teardrop/packages/Google.Protobuf.3.15.8/lib/netstandard2.0/Google.Protobuf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/Google.Protobuf.3.15.8/lib/netstandard2.0/Google.Protobuf.dll -------------------------------------------------------------------------------- /teardrop/packages/Google.Protobuf.3.15.8/lib/netstandard2.0/Google.Protobuf.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/Google.Protobuf.3.15.8/lib/netstandard2.0/Google.Protobuf.pdb -------------------------------------------------------------------------------- /teardrop/packages/K4os.Compression.LZ4.1.2.6/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/K4os.Compression.LZ4.1.2.6/.signature.p7s -------------------------------------------------------------------------------- /teardrop/packages/K4os.Compression.LZ4.1.2.6/K4os.Compression.LZ4.1.2.6.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/K4os.Compression.LZ4.1.2.6/K4os.Compression.LZ4.1.2.6.nupkg -------------------------------------------------------------------------------- /teardrop/packages/K4os.Compression.LZ4.1.2.6/lib/net45/K4os.Compression.LZ4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/K4os.Compression.LZ4.1.2.6/lib/net45/K4os.Compression.LZ4.dll -------------------------------------------------------------------------------- /teardrop/packages/K4os.Compression.LZ4.1.2.6/lib/net46/K4os.Compression.LZ4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/K4os.Compression.LZ4.1.2.6/lib/net46/K4os.Compression.LZ4.dll -------------------------------------------------------------------------------- /teardrop/packages/K4os.Compression.LZ4.1.2.6/lib/netstandard1.6/K4os.Compression.LZ4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/K4os.Compression.LZ4.1.2.6/lib/netstandard1.6/K4os.Compression.LZ4.dll -------------------------------------------------------------------------------- /teardrop/packages/K4os.Compression.LZ4.1.2.6/lib/netstandard2.0/K4os.Compression.LZ4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/K4os.Compression.LZ4.1.2.6/lib/netstandard2.0/K4os.Compression.LZ4.dll -------------------------------------------------------------------------------- /teardrop/packages/K4os.Compression.LZ4.Streams.1.2.6/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/K4os.Compression.LZ4.Streams.1.2.6/.signature.p7s -------------------------------------------------------------------------------- /teardrop/packages/K4os.Compression.LZ4.Streams.1.2.6/K4os.Compression.LZ4.Streams.1.2.6.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/K4os.Compression.LZ4.Streams.1.2.6/K4os.Compression.LZ4.Streams.1.2.6.nupkg -------------------------------------------------------------------------------- /teardrop/packages/K4os.Compression.LZ4.Streams.1.2.6/lib/net45/K4os.Compression.LZ4.Streams.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/K4os.Compression.LZ4.Streams.1.2.6/lib/net45/K4os.Compression.LZ4.Streams.dll -------------------------------------------------------------------------------- /teardrop/packages/K4os.Compression.LZ4.Streams.1.2.6/lib/net46/K4os.Compression.LZ4.Streams.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/K4os.Compression.LZ4.Streams.1.2.6/lib/net46/K4os.Compression.LZ4.Streams.dll -------------------------------------------------------------------------------- /teardrop/packages/K4os.Compression.LZ4.Streams.1.2.6/lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/K4os.Compression.LZ4.Streams.1.2.6/lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll -------------------------------------------------------------------------------- /teardrop/packages/K4os.Compression.LZ4.Streams.1.2.6/lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/K4os.Compression.LZ4.Streams.1.2.6/lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll -------------------------------------------------------------------------------- /teardrop/packages/K4os.Compression.LZ4.Streams.1.2.6/lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/K4os.Compression.LZ4.Streams.1.2.6/lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll -------------------------------------------------------------------------------- /teardrop/packages/K4os.Hash.xxHash.1.0.6/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/K4os.Hash.xxHash.1.0.6/.signature.p7s -------------------------------------------------------------------------------- /teardrop/packages/K4os.Hash.xxHash.1.0.6/K4os.Hash.xxHash.1.0.6.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/K4os.Hash.xxHash.1.0.6/K4os.Hash.xxHash.1.0.6.nupkg -------------------------------------------------------------------------------- /teardrop/packages/K4os.Hash.xxHash.1.0.6/lib/net45/K4os.Hash.xxHash.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/K4os.Hash.xxHash.1.0.6/lib/net45/K4os.Hash.xxHash.dll -------------------------------------------------------------------------------- /teardrop/packages/K4os.Hash.xxHash.1.0.6/lib/net45/K4os.Hash.xxHash.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | K4os.Hash.xxHash 5 | 6 | 7 | 8 | 9 | Adapter implementing 10 | 11 | 12 | 13 | 14 | Creates new . 15 | 16 | Hash size (in bytes) 17 | Reset function. 18 | Update function. 19 | Digest function. 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | Base class for both and . Do not use directly. 39 | 40 | 41 | 42 | Protected constructor to prevent instantiation. 43 | 44 | 45 | 46 | xxHash 32-bit. 47 | 48 | 49 | 50 | Hash of empty buffer. 51 | 52 | 53 | Hash of provided buffer. 54 | Buffer. 55 | Length of buffer. 56 | Digest. 57 | 58 | 59 | Hash of provided buffer. 60 | Buffer. 61 | Digest. 62 | 63 | 64 | Hash of provided buffer. 65 | Buffer. 66 | Starting offset. 67 | Length of buffer. 68 | Digest. 69 | 70 | 71 | Creates xxHash instance. 72 | 73 | 74 | Resets hash calculation. 75 | 76 | 77 | Updates the has using given buffer. 78 | Buffer. 79 | Length of buffer. 80 | 81 | 82 | Updates the has using given buffer. 83 | Buffer. 84 | 85 | 86 | Updates the has using given buffer. 87 | Buffer. 88 | Starting offset. 89 | Length of buffer. 90 | 91 | 92 | Hash so far. 93 | Hash so far. 94 | 95 | 96 | Hash so far, as byte array. 97 | Hash so far. 98 | 99 | 100 | Converts this class to 101 | 102 | 103 | 104 | 105 | xxHash 64-bit. 106 | 107 | 108 | 109 | Hash of empty buffer. 110 | 111 | 112 | Hash of provided buffer. 113 | Buffer. 114 | Length of buffer. 115 | Digest. 116 | 117 | 118 | Hash of provided buffer. 119 | Buffer. 120 | Digest. 121 | 122 | 123 | Hash of provided buffer. 124 | Buffer. 125 | Starting offset. 126 | Length of buffer. 127 | Digest. 128 | 129 | 130 | Creates xxHash instance. 131 | 132 | 133 | Resets hash calculation. 134 | 135 | 136 | Updates the has using given buffer. 137 | Buffer. 138 | Length of buffer. 139 | 140 | 141 | Updates the has using given buffer. 142 | Buffer. 143 | 144 | 145 | Updates the has using given buffer. 146 | Buffer. 147 | Starting offset. 148 | Length of buffer. 149 | 150 | 151 | Hash so far. 152 | Hash so far. 153 | 154 | 155 | Hash so far, as byte array. 156 | Hash so far. 157 | 158 | 159 | Converts this class to 160 | 161 | 162 | 163 | 164 | -------------------------------------------------------------------------------- /teardrop/packages/K4os.Hash.xxHash.1.0.6/lib/net46/K4os.Hash.xxHash.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/K4os.Hash.xxHash.1.0.6/lib/net46/K4os.Hash.xxHash.dll -------------------------------------------------------------------------------- /teardrop/packages/K4os.Hash.xxHash.1.0.6/lib/net46/K4os.Hash.xxHash.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | K4os.Hash.xxHash 5 | 6 | 7 | 8 | 9 | Adapter implementing 10 | 11 | 12 | 13 | 14 | Creates new . 15 | 16 | Hash size (in bytes) 17 | Reset function. 18 | Update function. 19 | Digest function. 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | Base class for both and . Do not use directly. 39 | 40 | 41 | 42 | Protected constructor to prevent instantiation. 43 | 44 | 45 | 46 | xxHash 32-bit. 47 | 48 | 49 | 50 | Hash of empty buffer. 51 | 52 | 53 | Hash of provided buffer. 54 | Buffer. 55 | Length of buffer. 56 | Digest. 57 | 58 | 59 | Hash of provided buffer. 60 | Buffer. 61 | Digest. 62 | 63 | 64 | Hash of provided buffer. 65 | Buffer. 66 | Starting offset. 67 | Length of buffer. 68 | Digest. 69 | 70 | 71 | Creates xxHash instance. 72 | 73 | 74 | Resets hash calculation. 75 | 76 | 77 | Updates the has using given buffer. 78 | Buffer. 79 | Length of buffer. 80 | 81 | 82 | Updates the has using given buffer. 83 | Buffer. 84 | 85 | 86 | Updates the has using given buffer. 87 | Buffer. 88 | Starting offset. 89 | Length of buffer. 90 | 91 | 92 | Hash so far. 93 | Hash so far. 94 | 95 | 96 | Hash so far, as byte array. 97 | Hash so far. 98 | 99 | 100 | Converts this class to 101 | 102 | 103 | 104 | 105 | xxHash 64-bit. 106 | 107 | 108 | 109 | Hash of empty buffer. 110 | 111 | 112 | Hash of provided buffer. 113 | Buffer. 114 | Length of buffer. 115 | Digest. 116 | 117 | 118 | Hash of provided buffer. 119 | Buffer. 120 | Digest. 121 | 122 | 123 | Hash of provided buffer. 124 | Buffer. 125 | Starting offset. 126 | Length of buffer. 127 | Digest. 128 | 129 | 130 | Creates xxHash instance. 131 | 132 | 133 | Resets hash calculation. 134 | 135 | 136 | Updates the has using given buffer. 137 | Buffer. 138 | Length of buffer. 139 | 140 | 141 | Updates the has using given buffer. 142 | Buffer. 143 | 144 | 145 | Updates the has using given buffer. 146 | Buffer. 147 | Starting offset. 148 | Length of buffer. 149 | 150 | 151 | Hash so far. 152 | Hash so far. 153 | 154 | 155 | Hash so far, as byte array. 156 | Hash so far. 157 | 158 | 159 | Converts this class to 160 | 161 | 162 | 163 | 164 | -------------------------------------------------------------------------------- /teardrop/packages/K4os.Hash.xxHash.1.0.6/lib/netstandard1.6/K4os.Hash.xxHash.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/K4os.Hash.xxHash.1.0.6/lib/netstandard1.6/K4os.Hash.xxHash.dll -------------------------------------------------------------------------------- /teardrop/packages/K4os.Hash.xxHash.1.0.6/lib/netstandard1.6/K4os.Hash.xxHash.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | K4os.Hash.xxHash 5 | 6 | 7 | 8 | 9 | Adapter implementing 10 | 11 | 12 | 13 | 14 | Creates new . 15 | 16 | Hash size (in bytes) 17 | Reset function. 18 | Update function. 19 | Digest function. 20 | 21 | 22 | 23 | 24 | 25 | Current hash. 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | Base class for both and . Do not use directly. 39 | 40 | 41 | 42 | Protected constructor to prevent instantiation. 43 | 44 | 45 | 46 | xxHash 32-bit. 47 | 48 | 49 | 50 | Hash of empty buffer. 51 | 52 | 53 | Hash of provided buffer. 54 | Buffer. 55 | Length of buffer. 56 | Digest. 57 | 58 | 59 | Hash of provided buffer. 60 | Buffer. 61 | Digest. 62 | 63 | 64 | Hash of provided buffer. 65 | Buffer. 66 | Starting offset. 67 | Length of buffer. 68 | Digest. 69 | 70 | 71 | Creates xxHash instance. 72 | 73 | 74 | Resets hash calculation. 75 | 76 | 77 | Updates the has using given buffer. 78 | Buffer. 79 | Length of buffer. 80 | 81 | 82 | Updates the has using given buffer. 83 | Buffer. 84 | 85 | 86 | Updates the has using given buffer. 87 | Buffer. 88 | Starting offset. 89 | Length of buffer. 90 | 91 | 92 | Hash so far. 93 | Hash so far. 94 | 95 | 96 | Hash so far, as byte array. 97 | Hash so far. 98 | 99 | 100 | Converts this class to 101 | 102 | 103 | 104 | 105 | xxHash 64-bit. 106 | 107 | 108 | 109 | Hash of empty buffer. 110 | 111 | 112 | Hash of provided buffer. 113 | Buffer. 114 | Length of buffer. 115 | Digest. 116 | 117 | 118 | Hash of provided buffer. 119 | Buffer. 120 | Digest. 121 | 122 | 123 | Hash of provided buffer. 124 | Buffer. 125 | Starting offset. 126 | Length of buffer. 127 | Digest. 128 | 129 | 130 | Creates xxHash instance. 131 | 132 | 133 | Resets hash calculation. 134 | 135 | 136 | Updates the has using given buffer. 137 | Buffer. 138 | Length of buffer. 139 | 140 | 141 | Updates the has using given buffer. 142 | Buffer. 143 | 144 | 145 | Updates the has using given buffer. 146 | Buffer. 147 | Starting offset. 148 | Length of buffer. 149 | 150 | 151 | Hash so far. 152 | Hash so far. 153 | 154 | 155 | Hash so far, as byte array. 156 | Hash so far. 157 | 158 | 159 | Converts this class to 160 | 161 | 162 | 163 | 164 | -------------------------------------------------------------------------------- /teardrop/packages/K4os.Hash.xxHash.1.0.6/lib/netstandard2.0/K4os.Hash.xxHash.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/K4os.Hash.xxHash.1.0.6/lib/netstandard2.0/K4os.Hash.xxHash.dll -------------------------------------------------------------------------------- /teardrop/packages/K4os.Hash.xxHash.1.0.6/lib/netstandard2.0/K4os.Hash.xxHash.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | K4os.Hash.xxHash 5 | 6 | 7 | 8 | 9 | Adapter implementing 10 | 11 | 12 | 13 | 14 | Creates new . 15 | 16 | Hash size (in bytes) 17 | Reset function. 18 | Update function. 19 | Digest function. 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | Base class for both and . Do not use directly. 39 | 40 | 41 | 42 | Protected constructor to prevent instantiation. 43 | 44 | 45 | 46 | xxHash 32-bit. 47 | 48 | 49 | 50 | Hash of empty buffer. 51 | 52 | 53 | Hash of provided buffer. 54 | Buffer. 55 | Length of buffer. 56 | Digest. 57 | 58 | 59 | Hash of provided buffer. 60 | Buffer. 61 | Digest. 62 | 63 | 64 | Hash of provided buffer. 65 | Buffer. 66 | Starting offset. 67 | Length of buffer. 68 | Digest. 69 | 70 | 71 | Creates xxHash instance. 72 | 73 | 74 | Resets hash calculation. 75 | 76 | 77 | Updates the has using given buffer. 78 | Buffer. 79 | Length of buffer. 80 | 81 | 82 | Updates the has using given buffer. 83 | Buffer. 84 | 85 | 86 | Updates the has using given buffer. 87 | Buffer. 88 | Starting offset. 89 | Length of buffer. 90 | 91 | 92 | Hash so far. 93 | Hash so far. 94 | 95 | 96 | Hash so far, as byte array. 97 | Hash so far. 98 | 99 | 100 | Converts this class to 101 | 102 | 103 | 104 | 105 | xxHash 64-bit. 106 | 107 | 108 | 109 | Hash of empty buffer. 110 | 111 | 112 | Hash of provided buffer. 113 | Buffer. 114 | Length of buffer. 115 | Digest. 116 | 117 | 118 | Hash of provided buffer. 119 | Buffer. 120 | Digest. 121 | 122 | 123 | Hash of provided buffer. 124 | Buffer. 125 | Starting offset. 126 | Length of buffer. 127 | Digest. 128 | 129 | 130 | Creates xxHash instance. 131 | 132 | 133 | Resets hash calculation. 134 | 135 | 136 | Updates the has using given buffer. 137 | Buffer. 138 | Length of buffer. 139 | 140 | 141 | Updates the has using given buffer. 142 | Buffer. 143 | 144 | 145 | Updates the has using given buffer. 146 | Buffer. 147 | Starting offset. 148 | Length of buffer. 149 | 150 | 151 | Hash so far. 152 | Hash so far. 153 | 154 | 155 | Hash so far, as byte array. 156 | Hash so far. 157 | 158 | 159 | Converts this class to 160 | 161 | 162 | 163 | 164 | -------------------------------------------------------------------------------- /teardrop/packages/MySql.Data.8.0.24/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/MySql.Data.8.0.24/.signature.p7s -------------------------------------------------------------------------------- /teardrop/packages/MySql.Data.8.0.24/MySql.Data.8.0.24.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/MySql.Data.8.0.24/MySql.Data.8.0.24.nupkg -------------------------------------------------------------------------------- /teardrop/packages/MySql.Data.8.0.24/lib/net452/MySql.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/MySql.Data.8.0.24/lib/net452/MySql.Data.dll -------------------------------------------------------------------------------- /teardrop/packages/MySql.Data.8.0.24/lib/net452/Ubiety.Dns.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/MySql.Data.8.0.24/lib/net452/Ubiety.Dns.Core.dll -------------------------------------------------------------------------------- /teardrop/packages/MySql.Data.8.0.24/lib/net452/Zstandard.Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/MySql.Data.8.0.24/lib/net452/Zstandard.Net.dll -------------------------------------------------------------------------------- /teardrop/packages/MySql.Data.8.0.24/lib/net48/MySql.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/MySql.Data.8.0.24/lib/net48/MySql.Data.dll -------------------------------------------------------------------------------- /teardrop/packages/MySql.Data.8.0.24/lib/net48/Ubiety.Dns.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/MySql.Data.8.0.24/lib/net48/Ubiety.Dns.Core.dll -------------------------------------------------------------------------------- /teardrop/packages/MySql.Data.8.0.24/lib/net48/Zstandard.Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/MySql.Data.8.0.24/lib/net48/Zstandard.Net.dll -------------------------------------------------------------------------------- /teardrop/packages/MySql.Data.8.0.24/lib/net5.0/MySql.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/MySql.Data.8.0.24/lib/net5.0/MySql.Data.dll -------------------------------------------------------------------------------- /teardrop/packages/MySql.Data.8.0.24/lib/net5.0/Ubiety.Dns.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/MySql.Data.8.0.24/lib/net5.0/Ubiety.Dns.Core.dll -------------------------------------------------------------------------------- /teardrop/packages/MySql.Data.8.0.24/lib/net5.0/Zstandard.Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/MySql.Data.8.0.24/lib/net5.0/Zstandard.Net.dll -------------------------------------------------------------------------------- /teardrop/packages/MySql.Data.8.0.24/lib/netstandard2.0/MySql.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/MySql.Data.8.0.24/lib/netstandard2.0/MySql.Data.dll -------------------------------------------------------------------------------- /teardrop/packages/MySql.Data.8.0.24/lib/netstandard2.0/Ubiety.Dns.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/MySql.Data.8.0.24/lib/netstandard2.0/Ubiety.Dns.Core.dll -------------------------------------------------------------------------------- /teardrop/packages/MySql.Data.8.0.24/lib/netstandard2.0/Zstandard.Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/MySql.Data.8.0.24/lib/netstandard2.0/Zstandard.Net.dll -------------------------------------------------------------------------------- /teardrop/packages/MySql.Data.8.0.24/lib/netstandard2.1/MySql.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/MySql.Data.8.0.24/lib/netstandard2.1/MySql.Data.dll -------------------------------------------------------------------------------- /teardrop/packages/MySql.Data.8.0.24/lib/netstandard2.1/Ubiety.Dns.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/MySql.Data.8.0.24/lib/netstandard2.1/Ubiety.Dns.Core.dll -------------------------------------------------------------------------------- /teardrop/packages/MySql.Data.8.0.24/lib/netstandard2.1/Zstandard.Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/MySql.Data.8.0.24/lib/netstandard2.1/Zstandard.Net.dll -------------------------------------------------------------------------------- /teardrop/packages/System.Buffers.4.5.1/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Buffers.4.5.1/.signature.p7s -------------------------------------------------------------------------------- /teardrop/packages/System.Buffers.4.5.1/LICENSE.TXT: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) .NET Foundation and Contributors 4 | 5 | All rights reserved. 6 | 7 | Permission is hereby granted, free of charge, to any person obtaining a copy 8 | of this software and associated documentation files (the "Software"), to deal 9 | in the Software without restriction, including without limitation the rights 10 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 11 | copies of the Software, and to permit persons to whom the Software is 12 | furnished to do so, subject to the following conditions: 13 | 14 | The above copyright notice and this permission notice shall be included in all 15 | copies or substantial portions of the Software. 16 | 17 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 18 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 19 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 20 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 21 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 22 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 23 | SOFTWARE. 24 | -------------------------------------------------------------------------------- /teardrop/packages/System.Buffers.4.5.1/System.Buffers.4.5.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Buffers.4.5.1/System.Buffers.4.5.1.nupkg -------------------------------------------------------------------------------- /teardrop/packages/System.Buffers.4.5.1/lib/net461/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Buffers.4.5.1/lib/net461/System.Buffers.dll -------------------------------------------------------------------------------- /teardrop/packages/System.Buffers.4.5.1/lib/net461/System.Buffers.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | System.Buffers 4 | 5 | 6 | 7 | Provides a resource pool that enables reusing instances of type . 8 | The type of the objects that are in the resource pool. 9 | 10 | 11 | Initializes a new instance of the class. 12 | 13 | 14 | Creates a new instance of the class. 15 | A new instance of the class. 16 | 17 | 18 | Creates a new instance of the class using the specifed configuration. 19 | The maximum length of an array instance that may be stored in the pool. 20 | The maximum number of array instances that may be stored in each bucket in the pool. The pool groups arrays of similar lengths into buckets for faster access. 21 | A new instance of the class with the specified configuration. 22 | 23 | 24 | Retrieves a buffer that is at least the requested length. 25 | The minimum length of the array. 26 | An array of type that is at least minimumLength in length. 27 | 28 | 29 | Returns an array to the pool that was previously obtained using the method on the same instance. 30 | A buffer to return to the pool that was previously obtained using the method. 31 | Indicates whether the contents of the buffer should be cleared before reuse. If clearArray is set to true, and if the pool will store the buffer to enable subsequent reuse, the method will clear the array of its contents so that a subsequent caller using the method will not see the content of the previous caller. If clearArray is set to false or if the pool will release the buffer, the array's contents are left unchanged. 32 | 33 | 34 | Gets a shared instance. 35 | A shared instance. 36 | 37 | 38 | -------------------------------------------------------------------------------- /teardrop/packages/System.Buffers.4.5.1/lib/netcoreapp2.0/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Buffers.4.5.1/lib/netcoreapp2.0/_._ -------------------------------------------------------------------------------- /teardrop/packages/System.Buffers.4.5.1/lib/netstandard1.1/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Buffers.4.5.1/lib/netstandard1.1/System.Buffers.dll -------------------------------------------------------------------------------- /teardrop/packages/System.Buffers.4.5.1/lib/netstandard1.1/System.Buffers.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | System.Buffers 4 | 5 | 6 | 7 | Provides a resource pool that enables reusing instances of type . 8 | The type of the objects that are in the resource pool. 9 | 10 | 11 | Initializes a new instance of the class. 12 | 13 | 14 | Creates a new instance of the class. 15 | A new instance of the class. 16 | 17 | 18 | Creates a new instance of the class using the specifed configuration. 19 | The maximum length of an array instance that may be stored in the pool. 20 | The maximum number of array instances that may be stored in each bucket in the pool. The pool groups arrays of similar lengths into buckets for faster access. 21 | A new instance of the class with the specified configuration. 22 | 23 | 24 | Retrieves a buffer that is at least the requested length. 25 | The minimum length of the array. 26 | An array of type that is at least minimumLength in length. 27 | 28 | 29 | Returns an array to the pool that was previously obtained using the method on the same instance. 30 | A buffer to return to the pool that was previously obtained using the method. 31 | Indicates whether the contents of the buffer should be cleared before reuse. If clearArray is set to true, and if the pool will store the buffer to enable subsequent reuse, the method will clear the array of its contents so that a subsequent caller using the method will not see the content of the previous caller. If clearArray is set to false or if the pool will release the buffer, the array's contents are left unchanged. 32 | 33 | 34 | Gets a shared instance. 35 | A shared instance. 36 | 37 | 38 | -------------------------------------------------------------------------------- /teardrop/packages/System.Buffers.4.5.1/lib/netstandard2.0/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Buffers.4.5.1/lib/netstandard2.0/System.Buffers.dll -------------------------------------------------------------------------------- /teardrop/packages/System.Buffers.4.5.1/lib/netstandard2.0/System.Buffers.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | System.Buffers 4 | 5 | 6 | 7 | Provides a resource pool that enables reusing instances of type . 8 | The type of the objects that are in the resource pool. 9 | 10 | 11 | Initializes a new instance of the class. 12 | 13 | 14 | Creates a new instance of the class. 15 | A new instance of the class. 16 | 17 | 18 | Creates a new instance of the class using the specifed configuration. 19 | The maximum length of an array instance that may be stored in the pool. 20 | The maximum number of array instances that may be stored in each bucket in the pool. The pool groups arrays of similar lengths into buckets for faster access. 21 | A new instance of the class with the specified configuration. 22 | 23 | 24 | Retrieves a buffer that is at least the requested length. 25 | The minimum length of the array. 26 | An array of type that is at least minimumLength in length. 27 | 28 | 29 | Returns an array to the pool that was previously obtained using the method on the same instance. 30 | A buffer to return to the pool that was previously obtained using the method. 31 | Indicates whether the contents of the buffer should be cleared before reuse. If clearArray is set to true, and if the pool will store the buffer to enable subsequent reuse, the method will clear the array of its contents so that a subsequent caller using the method will not see the content of the previous caller. If clearArray is set to false or if the pool will release the buffer, the array's contents are left unchanged. 32 | 33 | 34 | Gets a shared instance. 35 | A shared instance. 36 | 37 | 38 | -------------------------------------------------------------------------------- /teardrop/packages/System.Buffers.4.5.1/lib/uap10.0.16299/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Buffers.4.5.1/lib/uap10.0.16299/_._ -------------------------------------------------------------------------------- /teardrop/packages/System.Buffers.4.5.1/ref/net45/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Buffers.4.5.1/ref/net45/System.Buffers.dll -------------------------------------------------------------------------------- /teardrop/packages/System.Buffers.4.5.1/ref/net45/System.Buffers.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | System.Buffers 4 | 5 | 6 | 7 | Provides a resource pool that enables reusing instances of type . 8 | The type of the objects that are in the resource pool. 9 | 10 | 11 | Initializes a new instance of the class. 12 | 13 | 14 | Creates a new instance of the class. 15 | A new instance of the class. 16 | 17 | 18 | Creates a new instance of the class using the specifed configuration. 19 | The maximum length of an array instance that may be stored in the pool. 20 | The maximum number of array instances that may be stored in each bucket in the pool. The pool groups arrays of similar lengths into buckets for faster access. 21 | A new instance of the class with the specified configuration. 22 | 23 | 24 | Retrieves a buffer that is at least the requested length. 25 | The minimum length of the array. 26 | An array of type that is at least minimumLength in length. 27 | 28 | 29 | Returns an array to the pool that was previously obtained using the method on the same instance. 30 | A buffer to return to the pool that was previously obtained using the method. 31 | Indicates whether the contents of the buffer should be cleared before reuse. If clearArray is set to true, and if the pool will store the buffer to enable subsequent reuse, the method will clear the array of its contents so that a subsequent caller using the method will not see the content of the previous caller. If clearArray is set to false or if the pool will release the buffer, the array's contents are left unchanged. 32 | 33 | 34 | Gets a shared instance. 35 | A shared instance. 36 | 37 | 38 | -------------------------------------------------------------------------------- /teardrop/packages/System.Buffers.4.5.1/ref/netcoreapp2.0/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Buffers.4.5.1/ref/netcoreapp2.0/_._ -------------------------------------------------------------------------------- /teardrop/packages/System.Buffers.4.5.1/ref/netstandard1.1/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Buffers.4.5.1/ref/netstandard1.1/System.Buffers.dll -------------------------------------------------------------------------------- /teardrop/packages/System.Buffers.4.5.1/ref/netstandard1.1/System.Buffers.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | System.Buffers 4 | 5 | 6 | 7 | Provides a resource pool that enables reusing instances of type . 8 | The type of the objects that are in the resource pool. 9 | 10 | 11 | Initializes a new instance of the class. 12 | 13 | 14 | Creates a new instance of the class. 15 | A new instance of the class. 16 | 17 | 18 | Creates a new instance of the class using the specifed configuration. 19 | The maximum length of an array instance that may be stored in the pool. 20 | The maximum number of array instances that may be stored in each bucket in the pool. The pool groups arrays of similar lengths into buckets for faster access. 21 | A new instance of the class with the specified configuration. 22 | 23 | 24 | Retrieves a buffer that is at least the requested length. 25 | The minimum length of the array. 26 | An array of type that is at least minimumLength in length. 27 | 28 | 29 | Returns an array to the pool that was previously obtained using the method on the same instance. 30 | A buffer to return to the pool that was previously obtained using the method. 31 | Indicates whether the contents of the buffer should be cleared before reuse. If clearArray is set to true, and if the pool will store the buffer to enable subsequent reuse, the method will clear the array of its contents so that a subsequent caller using the method will not see the content of the previous caller. If clearArray is set to false or if the pool will release the buffer, the array's contents are left unchanged. 32 | 33 | 34 | Gets a shared instance. 35 | A shared instance. 36 | 37 | 38 | -------------------------------------------------------------------------------- /teardrop/packages/System.Buffers.4.5.1/ref/netstandard2.0/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Buffers.4.5.1/ref/netstandard2.0/System.Buffers.dll -------------------------------------------------------------------------------- /teardrop/packages/System.Buffers.4.5.1/ref/netstandard2.0/System.Buffers.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | System.Buffers 4 | 5 | 6 | 7 | Provides a resource pool that enables reusing instances of type . 8 | The type of the objects that are in the resource pool. 9 | 10 | 11 | Initializes a new instance of the class. 12 | 13 | 14 | Creates a new instance of the class. 15 | A new instance of the class. 16 | 17 | 18 | Creates a new instance of the class using the specifed configuration. 19 | The maximum length of an array instance that may be stored in the pool. 20 | The maximum number of array instances that may be stored in each bucket in the pool. The pool groups arrays of similar lengths into buckets for faster access. 21 | A new instance of the class with the specified configuration. 22 | 23 | 24 | Retrieves a buffer that is at least the requested length. 25 | The minimum length of the array. 26 | An array of type that is at least minimumLength in length. 27 | 28 | 29 | Returns an array to the pool that was previously obtained using the method on the same instance. 30 | A buffer to return to the pool that was previously obtained using the method. 31 | Indicates whether the contents of the buffer should be cleared before reuse. If clearArray is set to true, and if the pool will store the buffer to enable subsequent reuse, the method will clear the array of its contents so that a subsequent caller using the method will not see the content of the previous caller. If clearArray is set to false or if the pool will release the buffer, the array's contents are left unchanged. 32 | 33 | 34 | Gets a shared instance. 35 | A shared instance. 36 | 37 | 38 | -------------------------------------------------------------------------------- /teardrop/packages/System.Buffers.4.5.1/ref/uap10.0.16299/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Buffers.4.5.1/ref/uap10.0.16299/_._ -------------------------------------------------------------------------------- /teardrop/packages/System.Buffers.4.5.1/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Buffers.4.5.1/useSharedDesignerContext.txt -------------------------------------------------------------------------------- /teardrop/packages/System.Buffers.4.5.1/version.txt: -------------------------------------------------------------------------------- 1 | 7601f4f6225089ffb291dc7d58293c7bbf5c5d4f 2 | -------------------------------------------------------------------------------- /teardrop/packages/System.Memory.4.5.4/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Memory.4.5.4/.signature.p7s -------------------------------------------------------------------------------- /teardrop/packages/System.Memory.4.5.4/LICENSE.TXT: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) .NET Foundation and Contributors 4 | 5 | All rights reserved. 6 | 7 | Permission is hereby granted, free of charge, to any person obtaining a copy 8 | of this software and associated documentation files (the "Software"), to deal 9 | in the Software without restriction, including without limitation the rights 10 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 11 | copies of the Software, and to permit persons to whom the Software is 12 | furnished to do so, subject to the following conditions: 13 | 14 | The above copyright notice and this permission notice shall be included in all 15 | copies or substantial portions of the Software. 16 | 17 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 18 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 19 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 20 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 21 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 22 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 23 | SOFTWARE. 24 | -------------------------------------------------------------------------------- /teardrop/packages/System.Memory.4.5.4/System.Memory.4.5.4.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Memory.4.5.4/System.Memory.4.5.4.nupkg -------------------------------------------------------------------------------- /teardrop/packages/System.Memory.4.5.4/lib/net461/System.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Memory.4.5.4/lib/net461/System.Memory.dll -------------------------------------------------------------------------------- /teardrop/packages/System.Memory.4.5.4/lib/netcoreapp2.1/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Memory.4.5.4/lib/netcoreapp2.1/_._ -------------------------------------------------------------------------------- /teardrop/packages/System.Memory.4.5.4/lib/netstandard1.1/System.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Memory.4.5.4/lib/netstandard1.1/System.Memory.dll -------------------------------------------------------------------------------- /teardrop/packages/System.Memory.4.5.4/lib/netstandard2.0/System.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Memory.4.5.4/lib/netstandard2.0/System.Memory.dll -------------------------------------------------------------------------------- /teardrop/packages/System.Memory.4.5.4/ref/netcoreapp2.1/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Memory.4.5.4/ref/netcoreapp2.1/_._ -------------------------------------------------------------------------------- /teardrop/packages/System.Memory.4.5.4/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Memory.4.5.4/useSharedDesignerContext.txt -------------------------------------------------------------------------------- /teardrop/packages/System.Memory.4.5.4/version.txt: -------------------------------------------------------------------------------- 1 | 7601f4f6225089ffb291dc7d58293c7bbf5c5d4f 2 | -------------------------------------------------------------------------------- /teardrop/packages/System.Numerics.Vectors.4.5.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Numerics.Vectors.4.5.0/.signature.p7s -------------------------------------------------------------------------------- /teardrop/packages/System.Numerics.Vectors.4.5.0/LICENSE.TXT: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) .NET Foundation and Contributors 4 | 5 | All rights reserved. 6 | 7 | Permission is hereby granted, free of charge, to any person obtaining a copy 8 | of this software and associated documentation files (the "Software"), to deal 9 | in the Software without restriction, including without limitation the rights 10 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 11 | copies of the Software, and to permit persons to whom the Software is 12 | furnished to do so, subject to the following conditions: 13 | 14 | The above copyright notice and this permission notice shall be included in all 15 | copies or substantial portions of the Software. 16 | 17 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 18 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 19 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 20 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 21 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 22 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 23 | SOFTWARE. 24 | -------------------------------------------------------------------------------- /teardrop/packages/System.Numerics.Vectors.4.5.0/System.Numerics.Vectors.4.5.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Numerics.Vectors.4.5.0/System.Numerics.Vectors.4.5.0.nupkg -------------------------------------------------------------------------------- /teardrop/packages/System.Numerics.Vectors.4.5.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Numerics.Vectors.4.5.0/lib/MonoAndroid10/_._ -------------------------------------------------------------------------------- /teardrop/packages/System.Numerics.Vectors.4.5.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Numerics.Vectors.4.5.0/lib/MonoTouch10/_._ -------------------------------------------------------------------------------- /teardrop/packages/System.Numerics.Vectors.4.5.0/lib/net46/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Numerics.Vectors.4.5.0/lib/net46/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /teardrop/packages/System.Numerics.Vectors.4.5.0/lib/netcoreapp2.0/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Numerics.Vectors.4.5.0/lib/netcoreapp2.0/_._ -------------------------------------------------------------------------------- /teardrop/packages/System.Numerics.Vectors.4.5.0/lib/netstandard1.0/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Numerics.Vectors.4.5.0/lib/netstandard1.0/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /teardrop/packages/System.Numerics.Vectors.4.5.0/lib/netstandard2.0/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Numerics.Vectors.4.5.0/lib/netstandard2.0/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /teardrop/packages/System.Numerics.Vectors.4.5.0/lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Numerics.Vectors.4.5.0/lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /teardrop/packages/System.Numerics.Vectors.4.5.0/lib/uap10.0.16299/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Numerics.Vectors.4.5.0/lib/uap10.0.16299/_._ -------------------------------------------------------------------------------- /teardrop/packages/System.Numerics.Vectors.4.5.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Numerics.Vectors.4.5.0/lib/xamarinios10/_._ -------------------------------------------------------------------------------- /teardrop/packages/System.Numerics.Vectors.4.5.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Numerics.Vectors.4.5.0/lib/xamarinmac20/_._ -------------------------------------------------------------------------------- /teardrop/packages/System.Numerics.Vectors.4.5.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Numerics.Vectors.4.5.0/lib/xamarintvos10/_._ -------------------------------------------------------------------------------- /teardrop/packages/System.Numerics.Vectors.4.5.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Numerics.Vectors.4.5.0/lib/xamarinwatchos10/_._ -------------------------------------------------------------------------------- /teardrop/packages/System.Numerics.Vectors.4.5.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Numerics.Vectors.4.5.0/ref/MonoAndroid10/_._ -------------------------------------------------------------------------------- /teardrop/packages/System.Numerics.Vectors.4.5.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Numerics.Vectors.4.5.0/ref/MonoTouch10/_._ -------------------------------------------------------------------------------- /teardrop/packages/System.Numerics.Vectors.4.5.0/ref/net45/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Numerics.Vectors.4.5.0/ref/net45/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /teardrop/packages/System.Numerics.Vectors.4.5.0/ref/net46/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Numerics.Vectors.4.5.0/ref/net46/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /teardrop/packages/System.Numerics.Vectors.4.5.0/ref/netcoreapp2.0/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Numerics.Vectors.4.5.0/ref/netcoreapp2.0/_._ -------------------------------------------------------------------------------- /teardrop/packages/System.Numerics.Vectors.4.5.0/ref/netstandard1.0/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Numerics.Vectors.4.5.0/ref/netstandard1.0/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /teardrop/packages/System.Numerics.Vectors.4.5.0/ref/netstandard2.0/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Numerics.Vectors.4.5.0/ref/netstandard2.0/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /teardrop/packages/System.Numerics.Vectors.4.5.0/ref/uap10.0.16299/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Numerics.Vectors.4.5.0/ref/uap10.0.16299/_._ -------------------------------------------------------------------------------- /teardrop/packages/System.Numerics.Vectors.4.5.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Numerics.Vectors.4.5.0/ref/xamarinios10/_._ -------------------------------------------------------------------------------- /teardrop/packages/System.Numerics.Vectors.4.5.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Numerics.Vectors.4.5.0/ref/xamarinmac20/_._ -------------------------------------------------------------------------------- /teardrop/packages/System.Numerics.Vectors.4.5.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Numerics.Vectors.4.5.0/ref/xamarintvos10/_._ -------------------------------------------------------------------------------- /teardrop/packages/System.Numerics.Vectors.4.5.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Numerics.Vectors.4.5.0/ref/xamarinwatchos10/_._ -------------------------------------------------------------------------------- /teardrop/packages/System.Numerics.Vectors.4.5.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Numerics.Vectors.4.5.0/useSharedDesignerContext.txt -------------------------------------------------------------------------------- /teardrop/packages/System.Numerics.Vectors.4.5.0/version.txt: -------------------------------------------------------------------------------- 1 | 30ab651fcb4354552bd4891619a0bdd81e0ebdbf 2 | -------------------------------------------------------------------------------- /teardrop/packages/System.Runtime.CompilerServices.Unsafe.5.0.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Runtime.CompilerServices.Unsafe.5.0.0/.signature.p7s -------------------------------------------------------------------------------- /teardrop/packages/System.Runtime.CompilerServices.Unsafe.5.0.0/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Runtime.CompilerServices.Unsafe.5.0.0/Icon.png -------------------------------------------------------------------------------- /teardrop/packages/System.Runtime.CompilerServices.Unsafe.5.0.0/LICENSE.TXT: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) .NET Foundation and Contributors 4 | 5 | All rights reserved. 6 | 7 | Permission is hereby granted, free of charge, to any person obtaining a copy 8 | of this software and associated documentation files (the "Software"), to deal 9 | in the Software without restriction, including without limitation the rights 10 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 11 | copies of the Software, and to permit persons to whom the Software is 12 | furnished to do so, subject to the following conditions: 13 | 14 | The above copyright notice and this permission notice shall be included in all 15 | copies or substantial portions of the Software. 16 | 17 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 18 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 19 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 20 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 21 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 22 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 23 | SOFTWARE. 24 | -------------------------------------------------------------------------------- /teardrop/packages/System.Runtime.CompilerServices.Unsafe.5.0.0/System.Runtime.CompilerServices.Unsafe.5.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Runtime.CompilerServices.Unsafe.5.0.0/System.Runtime.CompilerServices.Unsafe.5.0.0.nupkg -------------------------------------------------------------------------------- /teardrop/packages/System.Runtime.CompilerServices.Unsafe.5.0.0/lib/net45/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Runtime.CompilerServices.Unsafe.5.0.0/lib/net45/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /teardrop/packages/System.Runtime.CompilerServices.Unsafe.5.0.0/lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Runtime.CompilerServices.Unsafe.5.0.0/lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /teardrop/packages/System.Runtime.CompilerServices.Unsafe.5.0.0/lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Runtime.CompilerServices.Unsafe.5.0.0/lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /teardrop/packages/System.Runtime.CompilerServices.Unsafe.5.0.0/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Runtime.CompilerServices.Unsafe.5.0.0/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /teardrop/packages/System.Runtime.CompilerServices.Unsafe.5.0.0/ref/net461/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Runtime.CompilerServices.Unsafe.5.0.0/ref/net461/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /teardrop/packages/System.Runtime.CompilerServices.Unsafe.5.0.0/ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Runtime.CompilerServices.Unsafe.5.0.0/ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /teardrop/packages/System.Runtime.CompilerServices.Unsafe.5.0.0/ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Runtime.CompilerServices.Unsafe.5.0.0/ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /teardrop/packages/System.Runtime.CompilerServices.Unsafe.5.0.0/ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Runtime.CompilerServices.Unsafe.5.0.0/ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /teardrop/packages/System.Runtime.CompilerServices.Unsafe.5.0.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/packages/System.Runtime.CompilerServices.Unsafe.5.0.0/useSharedDesignerContext.txt -------------------------------------------------------------------------------- /teardrop/packages/System.Runtime.CompilerServices.Unsafe.5.0.0/version.txt: -------------------------------------------------------------------------------- 1 | cf258a14b70ad9069470a108f13765e0e5988f51 2 | -------------------------------------------------------------------------------- /teardrop/teardrop.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.30907.101 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "teardrop", "teardrop\teardrop.csproj", "{82E9CFB5-D664-4C3E-9B55-3B7FBA97EFC2}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {82E9CFB5-D664-4C3E-9B55-3B7FBA97EFC2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {82E9CFB5-D664-4C3E-9B55-3B7FBA97EFC2}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {82E9CFB5-D664-4C3E-9B55-3B7FBA97EFC2}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {82E9CFB5-D664-4C3E-9B55-3B7FBA97EFC2}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {70631BDE-23B0-448E-AB3B-985AC46884F6} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /teardrop/teardrop/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 |
6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | .fallentear 42 | 43 | 44 | 127.0.0.1 45 | 46 | 47 | root 48 | 49 | 50 | 51 | 52 | 53 | teardrop 54 | 55 | 56 | False 57 | 58 | 59 | False 60 | 61 | 62 | Your Title Here 63 | 64 | 65 | False 66 | 67 | 68 | False 69 | 70 | 71 | <h1>Github:</h1><p>hackthedev/teardrop</p> 72 | 73 | 74 | False 75 | 76 | 77 | 78 | 79 | 80 | flash 81 | 82 | 83 | 84 | -------------------------------------------------------------------------------- /teardrop/teardrop/Crypto.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.IO; 4 | using System.Linq; 5 | using System.Runtime.InteropServices; 6 | using System.Security.Cryptography; 7 | using System.Text; 8 | using System.Threading.Tasks; 9 | using System.Windows.Forms; 10 | 11 | namespace teardrop 12 | { 13 | class Crypto 14 | { 15 | // This is used to generate a random string. Can be used to generate the encryption key 16 | private static Random random = new Random(); 17 | public static string GetRandomString(int length) 18 | { 19 | const string chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"; 20 | return new string(Enumerable.Repeat(chars, length) 21 | .Select(s => s[random.Next(s.Length)]).ToArray()); 22 | } 23 | 24 | // This code can be used to delete the encryption key from memory! 25 | [DllImport("KERNEL32.DLL", EntryPoint = "RtlZeroMemory")] 26 | public static extern bool ZeroMemory(IntPtr Destination, int Length); 27 | 28 | // This will generate a salt for the encryption process 29 | public static byte[] GenerateRandomSalt() 30 | { 31 | byte[] data = new byte[32]; 32 | 33 | using (RNGCryptoServiceProvider rng = new RNGCryptoServiceProvider()) 34 | { 35 | for (int i = 0; i < 10; i++) 36 | { 37 | rng.GetBytes(data); 38 | } 39 | } 40 | 41 | return data; 42 | } 43 | 44 | // This will encrypt a file with a random sault. 45 | public static void FileEncrypt(string inputFile, string password) 46 | { 47 | byte[] salt = GenerateRandomSalt(); 48 | 49 | FileStream fsCrypt = new FileStream(inputFile + Properties.Settings.Default.extension, FileMode.Create); 50 | 51 | byte[] passwordBytes = System.Text.Encoding.UTF8.GetBytes(password); 52 | 53 | RijndaelManaged AES = new RijndaelManaged(); 54 | AES.KeySize = 256; 55 | AES.BlockSize = 128; 56 | AES.Padding = PaddingMode.PKCS7; 57 | 58 | var key = new Rfc2898DeriveBytes(passwordBytes, salt, 50000); 59 | AES.Key = key.GetBytes(AES.KeySize / 8); 60 | AES.IV = key.GetBytes(AES.BlockSize / 8); 61 | 62 | AES.Mode = CipherMode.CFB; 63 | 64 | fsCrypt.Write(salt, 0, salt.Length); 65 | 66 | CryptoStream cs = new CryptoStream(fsCrypt, AES.CreateEncryptor(), CryptoStreamMode.Write); 67 | 68 | FileStream fsIn = new FileStream(inputFile, FileMode.Open); 69 | 70 | byte[] buffer = new byte[1048576]; 71 | int read; 72 | 73 | try 74 | { 75 | while ((read = fsIn.Read(buffer, 0, buffer.Length)) > 0) 76 | { 77 | Application.DoEvents(); 78 | cs.Write(buffer, 0, read); 79 | } 80 | 81 | fsIn.Close(); 82 | } 83 | catch (Exception ex) 84 | { 85 | Console.WriteLine("Error: " + ex.Message); 86 | } 87 | finally 88 | { 89 | cs.Close(); 90 | fsCrypt.Close(); 91 | } 92 | } 93 | 94 | // This will decrypt a file 95 | public static void FileDecrypt(string inputFile, string outputFile, string password) 96 | { 97 | byte[] passwordBytes = System.Text.Encoding.UTF8.GetBytes(password); 98 | byte[] salt = new byte[32]; 99 | 100 | FileStream fsCrypt = new FileStream(inputFile, FileMode.Open); 101 | fsCrypt.Read(salt, 0, salt.Length); 102 | 103 | RijndaelManaged AES = new RijndaelManaged(); 104 | AES.KeySize = 256; 105 | AES.BlockSize = 128; 106 | var key = new Rfc2898DeriveBytes(passwordBytes, salt, 50000); 107 | AES.Key = key.GetBytes(AES.KeySize / 8); 108 | AES.IV = key.GetBytes(AES.BlockSize / 8); 109 | AES.Padding = PaddingMode.PKCS7; 110 | AES.Mode = CipherMode.CFB; 111 | 112 | CryptoStream cs = new CryptoStream(fsCrypt, AES.CreateDecryptor(), CryptoStreamMode.Read); 113 | 114 | FileStream fsOut = new FileStream(outputFile, FileMode.Create); 115 | 116 | int read; 117 | byte[] buffer = new byte[1048576]; 118 | 119 | try 120 | { 121 | while ((read = cs.Read(buffer, 0, buffer.Length)) > 0) 122 | { 123 | Application.DoEvents(); 124 | fsOut.Write(buffer, 0, read); 125 | } 126 | 127 | 128 | } 129 | catch (CryptographicException ex_CryptographicException) 130 | { 131 | Console.WriteLine("CryptographicException error: " + ex_CryptographicException.Message); 132 | } 133 | catch (Exception ex) 134 | { 135 | Console.WriteLine("Error: " + ex.Message); 136 | } 137 | 138 | try 139 | { 140 | cs.Close(); 141 | } 142 | catch (Exception ex) 143 | { 144 | Console.WriteLine("Error by closing CryptoStream: " + ex.Message); 145 | } 146 | finally 147 | { 148 | fsOut.Close(); 149 | fsCrypt.Close(); 150 | } 151 | 152 | } 153 | } 154 | } 155 | -------------------------------------------------------------------------------- /teardrop/teardrop/Form1.Designer.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace teardrop 3 | { 4 | partial class Form1 5 | { 6 | /// 7 | /// Erforderliche Designervariable. 8 | /// 9 | private System.ComponentModel.IContainer components = null; 10 | 11 | /// 12 | /// Verwendete Ressourcen bereinigen. 13 | /// 14 | /// True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False. 15 | protected override void Dispose(bool disposing) 16 | { 17 | if (disposing && (components != null)) 18 | { 19 | components.Dispose(); 20 | } 21 | base.Dispose(disposing); 22 | } 23 | 24 | #region Vom Windows Form-Designer generierter Code 25 | 26 | /// 27 | /// Erforderliche Methode für die Designerunterstützung. 28 | /// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden. 29 | /// 30 | private void InitializeComponent() 31 | { 32 | this.components = new System.ComponentModel.Container(); 33 | this.panel_main = new System.Windows.Forms.Panel(); 34 | this.label1 = new System.Windows.Forms.Label(); 35 | this.textBox3 = new System.Windows.Forms.TextBox(); 36 | this.button1 = new System.Windows.Forms.Button(); 37 | this.textBox1 = new System.Windows.Forms.TextBox(); 38 | this.timer1 = new System.Windows.Forms.Timer(this.components); 39 | this.panel_theme_flash = new System.Windows.Forms.Panel(); 40 | this.label_theme_flash = new System.Windows.Forms.Label(); 41 | this.timer_theme_lash = new System.Windows.Forms.Timer(this.components); 42 | this.panel_main.SuspendLayout(); 43 | this.panel_theme_flash.SuspendLayout(); 44 | this.SuspendLayout(); 45 | // 46 | // panel_main 47 | // 48 | this.panel_main.BackColor = System.Drawing.Color.DarkRed; 49 | this.panel_main.Controls.Add(this.label1); 50 | this.panel_main.Controls.Add(this.textBox3); 51 | this.panel_main.Controls.Add(this.button1); 52 | this.panel_main.Controls.Add(this.textBox1); 53 | this.panel_main.Location = new System.Drawing.Point(56, 59); 54 | this.panel_main.Name = "panel_main"; 55 | this.panel_main.Size = new System.Drawing.Size(1228, 750); 56 | this.panel_main.TabIndex = 1; 57 | // 58 | // label1 59 | // 60 | this.label1.AutoSize = true; 61 | this.label1.Font = new System.Drawing.Font("Exo 2", 24F); 62 | this.label1.Location = new System.Drawing.Point(448, 0); 63 | this.label1.Name = "label1"; 64 | this.label1.Size = new System.Drawing.Size(338, 58); 65 | this.label1.TabIndex = 3; 66 | this.label1.Text = "YOUR TITLE HERE"; 67 | // 68 | // textBox3 69 | // 70 | this.textBox3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) 71 | | System.Windows.Forms.AnchorStyles.Right))); 72 | this.textBox3.BackColor = System.Drawing.Color.DarkRed; 73 | this.textBox3.ForeColor = System.Drawing.Color.White; 74 | this.textBox3.Location = new System.Drawing.Point(19, 700); 75 | this.textBox3.Name = "textBox3"; 76 | this.textBox3.Size = new System.Drawing.Size(899, 31); 77 | this.textBox3.TabIndex = 2; 78 | this.textBox3.Text = "Enter Decryption Key here"; 79 | // 80 | // button1 81 | // 82 | this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); 83 | this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat; 84 | this.button1.Location = new System.Drawing.Point(934, 694); 85 | this.button1.Name = "button1"; 86 | this.button1.Size = new System.Drawing.Size(274, 42); 87 | this.button1.TabIndex = 1; 88 | this.button1.Text = "Decrypt"; 89 | this.button1.UseVisualStyleBackColor = true; 90 | this.button1.Click += new System.EventHandler(this.button1_Click); 91 | // 92 | // textBox1 93 | // 94 | this.textBox1.BackColor = System.Drawing.Color.DarkRed; 95 | this.textBox1.ForeColor = System.Drawing.Color.White; 96 | this.textBox1.Location = new System.Drawing.Point(19, 102); 97 | this.textBox1.Multiline = true; 98 | this.textBox1.Name = "textBox1"; 99 | this.textBox1.ReadOnly = true; 100 | this.textBox1.Size = new System.Drawing.Size(1189, 573); 101 | this.textBox1.TabIndex = 0; 102 | // 103 | // timer1 104 | // 105 | this.timer1.Interval = 50; 106 | this.timer1.Tick += new System.EventHandler(this.timer1_Tick); 107 | // 108 | // panel_theme_flash 109 | // 110 | this.panel_theme_flash.BackColor = System.Drawing.Color.White; 111 | this.panel_theme_flash.Controls.Add(this.label_theme_flash); 112 | this.panel_theme_flash.Enabled = false; 113 | this.panel_theme_flash.Location = new System.Drawing.Point(24, 13); 114 | this.panel_theme_flash.Name = "panel_theme_flash"; 115 | this.panel_theme_flash.Size = new System.Drawing.Size(604, 443); 116 | this.panel_theme_flash.TabIndex = 2; 117 | this.panel_theme_flash.Visible = false; 118 | // 119 | // label_theme_flash 120 | // 121 | this.label_theme_flash.AutoSize = true; 122 | this.label_theme_flash.ForeColor = System.Drawing.Color.Black; 123 | this.label_theme_flash.Location = new System.Drawing.Point(193, 180); 124 | this.label_theme_flash.Name = "label_theme_flash"; 125 | this.label_theme_flash.Size = new System.Drawing.Size(69, 29); 126 | this.label_theme_flash.TabIndex = 0; 127 | this.label_theme_flash.Text = "label2"; 128 | // 129 | // Form1 130 | // 131 | this.AutoScaleDimensions = new System.Drawing.SizeF(11F, 29F); 132 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 133 | this.BackColor = System.Drawing.Color.DarkRed; 134 | this.ClientSize = new System.Drawing.Size(1332, 865); 135 | this.ControlBox = false; 136 | this.Controls.Add(this.panel_theme_flash); 137 | this.Controls.Add(this.panel_main); 138 | this.Font = new System.Drawing.Font("Exo 2", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 139 | this.ForeColor = System.Drawing.Color.White; 140 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; 141 | this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); 142 | this.Name = "Form1"; 143 | this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; 144 | this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing); 145 | this.Load += new System.EventHandler(this.Form1_Load); 146 | this.panel_main.ResumeLayout(false); 147 | this.panel_main.PerformLayout(); 148 | this.panel_theme_flash.ResumeLayout(false); 149 | this.panel_theme_flash.PerformLayout(); 150 | this.ResumeLayout(false); 151 | 152 | } 153 | 154 | #endregion 155 | private System.Windows.Forms.Panel panel_main; 156 | private System.Windows.Forms.Label label1; 157 | private System.Windows.Forms.TextBox textBox3; 158 | private System.Windows.Forms.Button button1; 159 | private System.Windows.Forms.TextBox textBox1; 160 | private System.Windows.Forms.Timer timer1; 161 | private System.Windows.Forms.Panel panel_theme_flash; 162 | private System.Windows.Forms.Label label_theme_flash; 163 | private System.Windows.Forms.Timer timer_theme_lash; 164 | } 165 | } 166 | 167 | -------------------------------------------------------------------------------- /teardrop/teardrop/Form1.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | 17, 17 122 | 123 | 124 | 118, 17 125 | 126 | -------------------------------------------------------------------------------- /teardrop/teardrop/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using System.Windows.Forms; 6 | 7 | namespace teardrop 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// Der Haupteinstiegspunkt für die Anwendung. 13 | /// 14 | [STAThread] 15 | static void Main() 16 | { 17 | Application.EnableVisualStyles(); 18 | Application.SetCompatibleTextRenderingDefault(false); 19 | Application.Run(new Form1()); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /teardrop/teardrop/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // Allgemeine Informationen über eine Assembly werden über die folgenden 6 | // Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern, 7 | // die einer Assembly zugeordnet sind. 8 | [assembly: AssemblyTitle("teardrop")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("teardrop")] 13 | [assembly: AssemblyCopyright("Copyright © 2021")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Durch Festlegen von ComVisible auf FALSE werden die Typen in dieser Assembly 18 | // für COM-Komponenten unsichtbar. Wenn Sie auf einen Typ in dieser Assembly von 19 | // COM aus zugreifen müssen, sollten Sie das ComVisible-Attribut für diesen Typ auf "True" festlegen. 20 | [assembly: ComVisible(false)] 21 | 22 | // Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird 23 | [assembly: Guid("82e9cfb5-d664-4c3e-9b55-3b7fba97efc2")] 24 | 25 | // Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten: 26 | // 27 | // Hauptversion 28 | // Nebenversion 29 | // Buildnummer 30 | // Revision 31 | // 32 | // Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden, 33 | // indem Sie "*" wie unten gezeigt eingeben: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /teardrop/teardrop/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // Dieser Code wurde von einem Tool generiert. 4 | // Laufzeitversion: 4.0.30319.42000 5 | // 6 | // Änderungen an dieser Datei können fehlerhaftes Verhalten verursachen und gehen verloren, wenn 7 | // der Code neu generiert wird. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | 12 | namespace teardrop.Properties 13 | { 14 | /// 15 | /// Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw. 16 | /// 17 | // Diese Klasse wurde von der StronglyTypedResourceBuilder-Klasse 18 | // über ein Tool wie ResGen oder Visual Studio automatisch generiert. 19 | // Um einen Member hinzuzufügen oder zu entfernen, bearbeiten Sie die .ResX-Datei und führen dann ResGen 20 | // mit der Option /str erneut aus, oder erstellen Sie Ihr VS-Projekt neu. 21 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] 22 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 23 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 24 | internal class Resources 25 | { 26 | 27 | private static global::System.Resources.ResourceManager resourceMan; 28 | 29 | private static global::System.Globalization.CultureInfo resourceCulture; 30 | 31 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 32 | internal Resources() 33 | { 34 | } 35 | 36 | /// 37 | /// Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird. 38 | /// 39 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 40 | internal static global::System.Resources.ResourceManager ResourceManager 41 | { 42 | get 43 | { 44 | if ((resourceMan == null)) 45 | { 46 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("teardrop.Properties.Resources", typeof(Resources).Assembly); 47 | resourceMan = temp; 48 | } 49 | return resourceMan; 50 | } 51 | } 52 | 53 | /// 54 | /// Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle 55 | /// Ressourcenlookups, die diese stark typisierte Ressourcenklasse verwenden. 56 | /// 57 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 58 | internal static global::System.Globalization.CultureInfo Culture 59 | { 60 | get 61 | { 62 | return resourceCulture; 63 | } 64 | set 65 | { 66 | resourceCulture = value; 67 | } 68 | } 69 | } 70 | } 71 | -------------------------------------------------------------------------------- /teardrop/teardrop/Properties/Resources.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | text/microsoft-resx 107 | 108 | 109 | 2.0 110 | 111 | 112 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 113 | 114 | 115 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | -------------------------------------------------------------------------------- /teardrop/teardrop/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // Dieser Code wurde von einem Tool generiert. 4 | // Laufzeitversion:4.0.30319.42000 5 | // 6 | // Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn 7 | // der Code erneut generiert wird. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace teardrop.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.10.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | 26 | [global::System.Configuration.UserScopedSettingAttribute()] 27 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 28 | [global::System.Configuration.DefaultSettingValueAttribute("")] 29 | public string key { 30 | get { 31 | return ((string)(this["key"])); 32 | } 33 | set { 34 | this["key"] = value; 35 | } 36 | } 37 | 38 | [global::System.Configuration.UserScopedSettingAttribute()] 39 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 40 | [global::System.Configuration.DefaultSettingValueAttribute(".fallentear")] 41 | public string extension { 42 | get { 43 | return ((string)(this["extension"])); 44 | } 45 | set { 46 | this["extension"] = value; 47 | } 48 | } 49 | 50 | [global::System.Configuration.UserScopedSettingAttribute()] 51 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 52 | [global::System.Configuration.DefaultSettingValueAttribute("127.0.0.1")] 53 | public string db_host { 54 | get { 55 | return ((string)(this["db_host"])); 56 | } 57 | set { 58 | this["db_host"] = value; 59 | } 60 | } 61 | 62 | [global::System.Configuration.UserScopedSettingAttribute()] 63 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 64 | [global::System.Configuration.DefaultSettingValueAttribute("root")] 65 | public string db_user { 66 | get { 67 | return ((string)(this["db_user"])); 68 | } 69 | set { 70 | this["db_user"] = value; 71 | } 72 | } 73 | 74 | [global::System.Configuration.UserScopedSettingAttribute()] 75 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 76 | [global::System.Configuration.DefaultSettingValueAttribute("")] 77 | public string db_pass { 78 | get { 79 | return ((string)(this["db_pass"])); 80 | } 81 | set { 82 | this["db_pass"] = value; 83 | } 84 | } 85 | 86 | [global::System.Configuration.UserScopedSettingAttribute()] 87 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 88 | [global::System.Configuration.DefaultSettingValueAttribute("teardrop")] 89 | public string db_database { 90 | get { 91 | return ((string)(this["db_database"])); 92 | } 93 | set { 94 | this["db_database"] = value; 95 | } 96 | } 97 | 98 | [global::System.Configuration.UserScopedSettingAttribute()] 99 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 100 | [global::System.Configuration.DefaultSettingValueAttribute("False")] 101 | public bool db_enable { 102 | get { 103 | return ((bool)(this["db_enable"])); 104 | } 105 | set { 106 | this["db_enable"] = value; 107 | } 108 | } 109 | 110 | [global::System.Configuration.UserScopedSettingAttribute()] 111 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 112 | [global::System.Configuration.DefaultSettingValueAttribute("False")] 113 | public bool debug { 114 | get { 115 | return ((bool)(this["debug"])); 116 | } 117 | set { 118 | this["debug"] = value; 119 | } 120 | } 121 | 122 | [global::System.Configuration.UserScopedSettingAttribute()] 123 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 124 | [global::System.Configuration.DefaultSettingValueAttribute("Your Title Here")] 125 | public string application_title { 126 | get { 127 | return ((string)(this["application_title"])); 128 | } 129 | set { 130 | this["application_title"] = value; 131 | } 132 | } 133 | 134 | [global::System.Configuration.UserScopedSettingAttribute()] 135 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 136 | [global::System.Configuration.DefaultSettingValueAttribute("False")] 137 | public bool disable_taskmgr { 138 | get { 139 | return ((bool)(this["disable_taskmgr"])); 140 | } 141 | set { 142 | this["disable_taskmgr"] = value; 143 | } 144 | } 145 | 146 | [global::System.Configuration.UserScopedSettingAttribute()] 147 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 148 | [global::System.Configuration.DefaultSettingValueAttribute("False")] 149 | public bool clickMouse { 150 | get { 151 | return ((bool)(this["clickMouse"])); 152 | } 153 | set { 154 | this["clickMouse"] = value; 155 | } 156 | } 157 | 158 | [global::System.Configuration.UserScopedSettingAttribute()] 159 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 160 | [global::System.Configuration.DefaultSettingValueAttribute("

Github:

hackthedev/teardrop

")] 161 | public string message { 162 | get { 163 | return ((string)(this["message"])); 164 | } 165 | set { 166 | this["message"] = value; 167 | } 168 | } 169 | 170 | [global::System.Configuration.UserScopedSettingAttribute()] 171 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 172 | [global::System.Configuration.DefaultSettingValueAttribute("False")] 173 | public bool unkillable { 174 | get { 175 | return ((bool)(this["unkillable"])); 176 | } 177 | set { 178 | this["unkillable"] = value; 179 | } 180 | } 181 | 182 | [global::System.Configuration.UserScopedSettingAttribute()] 183 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 184 | [global::System.Configuration.DefaultSettingValueAttribute("")] 185 | public string application_name { 186 | get { 187 | return ((string)(this["application_name"])); 188 | } 189 | set { 190 | this["application_name"] = value; 191 | } 192 | } 193 | 194 | [global::System.Configuration.UserScopedSettingAttribute()] 195 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 196 | [global::System.Configuration.DefaultSettingValueAttribute("flash")] 197 | public string theme { 198 | get { 199 | return ((string)(this["theme"])); 200 | } 201 | set { 202 | this["theme"] = value; 203 | } 204 | } 205 | } 206 | } 207 | -------------------------------------------------------------------------------- /teardrop/teardrop/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | .fallentear 10 | 11 | 12 | 127.0.0.1 13 | 14 | 15 | root 16 | 17 | 18 | 19 | 20 | 21 | teardrop 22 | 23 | 24 | False 25 | 26 | 27 | False 28 | 29 | 30 | Your Title Here 31 | 32 | 33 | False 34 | 35 | 36 | False 37 | 38 | 39 | <h1>Github:</h1><p>hackthedev/teardrop</p> 40 | 41 | 42 | False 43 | 44 | 45 | 46 | 47 | 48 | flash 49 | 50 | 51 | -------------------------------------------------------------------------------- /teardrop/teardrop/app.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 52 | 59 | 60 | 61 | 75 | 76 | 77 | -------------------------------------------------------------------------------- /teardrop/teardrop/bin/Debug/BouncyCastle.Crypto.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/teardrop/bin/Debug/BouncyCastle.Crypto.dll -------------------------------------------------------------------------------- /teardrop/teardrop/bin/Debug/DeviceId.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/teardrop/bin/Debug/DeviceId.dll -------------------------------------------------------------------------------- /teardrop/teardrop/bin/Debug/Google.Protobuf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/teardrop/bin/Debug/Google.Protobuf.dll -------------------------------------------------------------------------------- /teardrop/teardrop/bin/Debug/Google.Protobuf.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/teardrop/bin/Debug/Google.Protobuf.pdb -------------------------------------------------------------------------------- /teardrop/teardrop/bin/Debug/K4os.Compression.LZ4.Streams.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/teardrop/bin/Debug/K4os.Compression.LZ4.Streams.dll -------------------------------------------------------------------------------- /teardrop/teardrop/bin/Debug/K4os.Compression.LZ4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/teardrop/bin/Debug/K4os.Compression.LZ4.dll -------------------------------------------------------------------------------- /teardrop/teardrop/bin/Debug/K4os.Hash.xxHash.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/teardrop/bin/Debug/K4os.Hash.xxHash.dll -------------------------------------------------------------------------------- /teardrop/teardrop/bin/Debug/K4os.Hash.xxHash.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | K4os.Hash.xxHash 5 | 6 | 7 | 8 | 9 | Adapter implementing 10 | 11 | 12 | 13 | 14 | Creates new . 15 | 16 | Hash size (in bytes) 17 | Reset function. 18 | Update function. 19 | Digest function. 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | Base class for both and . Do not use directly. 39 | 40 | 41 | 42 | Protected constructor to prevent instantiation. 43 | 44 | 45 | 46 | xxHash 32-bit. 47 | 48 | 49 | 50 | Hash of empty buffer. 51 | 52 | 53 | Hash of provided buffer. 54 | Buffer. 55 | Length of buffer. 56 | Digest. 57 | 58 | 59 | Hash of provided buffer. 60 | Buffer. 61 | Digest. 62 | 63 | 64 | Hash of provided buffer. 65 | Buffer. 66 | Starting offset. 67 | Length of buffer. 68 | Digest. 69 | 70 | 71 | Creates xxHash instance. 72 | 73 | 74 | Resets hash calculation. 75 | 76 | 77 | Updates the has using given buffer. 78 | Buffer. 79 | Length of buffer. 80 | 81 | 82 | Updates the has using given buffer. 83 | Buffer. 84 | 85 | 86 | Updates the has using given buffer. 87 | Buffer. 88 | Starting offset. 89 | Length of buffer. 90 | 91 | 92 | Hash so far. 93 | Hash so far. 94 | 95 | 96 | Hash so far, as byte array. 97 | Hash so far. 98 | 99 | 100 | Converts this class to 101 | 102 | 103 | 104 | 105 | xxHash 64-bit. 106 | 107 | 108 | 109 | Hash of empty buffer. 110 | 111 | 112 | Hash of provided buffer. 113 | Buffer. 114 | Length of buffer. 115 | Digest. 116 | 117 | 118 | Hash of provided buffer. 119 | Buffer. 120 | Digest. 121 | 122 | 123 | Hash of provided buffer. 124 | Buffer. 125 | Starting offset. 126 | Length of buffer. 127 | Digest. 128 | 129 | 130 | Creates xxHash instance. 131 | 132 | 133 | Resets hash calculation. 134 | 135 | 136 | Updates the has using given buffer. 137 | Buffer. 138 | Length of buffer. 139 | 140 | 141 | Updates the has using given buffer. 142 | Buffer. 143 | 144 | 145 | Updates the has using given buffer. 146 | Buffer. 147 | Starting offset. 148 | Length of buffer. 149 | 150 | 151 | Hash so far. 152 | Hash so far. 153 | 154 | 155 | Hash so far, as byte array. 156 | Hash so far. 157 | 158 | 159 | Converts this class to 160 | 161 | 162 | 163 | 164 | -------------------------------------------------------------------------------- /teardrop/teardrop/bin/Debug/MySql.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/teardrop/bin/Debug/MySql.Data.dll -------------------------------------------------------------------------------- /teardrop/teardrop/bin/Debug/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/teardrop/bin/Debug/System.Buffers.dll -------------------------------------------------------------------------------- /teardrop/teardrop/bin/Debug/System.Buffers.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | System.Buffers 4 | 5 | 6 | 7 | Provides a resource pool that enables reusing instances of type . 8 | The type of the objects that are in the resource pool. 9 | 10 | 11 | Initializes a new instance of the class. 12 | 13 | 14 | Creates a new instance of the class. 15 | A new instance of the class. 16 | 17 | 18 | Creates a new instance of the class using the specifed configuration. 19 | The maximum length of an array instance that may be stored in the pool. 20 | The maximum number of array instances that may be stored in each bucket in the pool. The pool groups arrays of similar lengths into buckets for faster access. 21 | A new instance of the class with the specified configuration. 22 | 23 | 24 | Retrieves a buffer that is at least the requested length. 25 | The minimum length of the array. 26 | An array of type that is at least minimumLength in length. 27 | 28 | 29 | Returns an array to the pool that was previously obtained using the method on the same instance. 30 | A buffer to return to the pool that was previously obtained using the method. 31 | Indicates whether the contents of the buffer should be cleared before reuse. If clearArray is set to true, and if the pool will store the buffer to enable subsequent reuse, the method will clear the array of its contents so that a subsequent caller using the method will not see the content of the previous caller. If clearArray is set to false or if the pool will release the buffer, the array&#39;s contents are left unchanged. 32 | 33 | 34 | Gets a shared instance. 35 | A shared instance. 36 | 37 | 38 | -------------------------------------------------------------------------------- /teardrop/teardrop/bin/Debug/System.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/teardrop/bin/Debug/System.Memory.dll -------------------------------------------------------------------------------- /teardrop/teardrop/bin/Debug/System.Memory.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | System.Memory 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 | 262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 289 | 290 | 291 | 292 | 293 | 294 | 295 | 296 | 297 | 298 | 299 | 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | 310 | 311 | 312 | 313 | 314 | 315 | 316 | 317 | 318 | 319 | 320 | 321 | 322 | 323 | 324 | 325 | 326 | 327 | 328 | 329 | 330 | 331 | 332 | 333 | 334 | 335 | 336 | 337 | 338 | 339 | 340 | 341 | 342 | 343 | 344 | 345 | 346 | 347 | 348 | 349 | 350 | 351 | 352 | 353 | 354 | 355 | -------------------------------------------------------------------------------- /teardrop/teardrop/bin/Debug/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/teardrop/bin/Debug/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /teardrop/teardrop/bin/Debug/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/teardrop/bin/Debug/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /teardrop/teardrop/bin/Debug/Ubiety.Dns.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/teardrop/bin/Debug/Ubiety.Dns.Core.dll -------------------------------------------------------------------------------- /teardrop/teardrop/bin/Debug/Zstandard.Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/teardrop/bin/Debug/Zstandard.Net.dll -------------------------------------------------------------------------------- /teardrop/teardrop/bin/Debug/message.html: -------------------------------------------------------------------------------- 1 |

Github:

hackthedev/teardrop

-------------------------------------------------------------------------------- /teardrop/teardrop/bin/Debug/teardrop.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/teardrop/bin/Debug/teardrop.exe -------------------------------------------------------------------------------- /teardrop/teardrop/bin/Debug/teardrop.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 |
6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | .fallentear 42 | 43 | 44 | 127.0.0.1 45 | 46 | 47 | root 48 | 49 | 50 | 51 | 52 | 53 | teardrop 54 | 55 | 56 | False 57 | 58 | 59 | False 60 | 61 | 62 | Your Title Here 63 | 64 | 65 | False 66 | 67 | 68 | False 69 | 70 | 71 | <h1>Github:</h1><p>hackthedev/teardrop</p> 72 | 73 | 74 | False 75 | 76 | 77 | 78 | 79 | 80 | flash 81 | 82 | 83 | 84 | -------------------------------------------------------------------------------- /teardrop/teardrop/bin/Debug/teardrop.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/teardrop/bin/Debug/teardrop.pdb -------------------------------------------------------------------------------- /teardrop/teardrop/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /teardrop/teardrop/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/teardrop/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /teardrop/teardrop/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/teardrop/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /teardrop/teardrop/obj/Debug/teardrop.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/teardrop/obj/Debug/teardrop.Form1.resources -------------------------------------------------------------------------------- /teardrop/teardrop/obj/Debug/teardrop.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/teardrop/obj/Debug/teardrop.Properties.Resources.resources -------------------------------------------------------------------------------- /teardrop/teardrop/obj/Debug/teardrop.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/teardrop/obj/Debug/teardrop.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /teardrop/teardrop/obj/Debug/teardrop.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | c78143334193403ccc93a083271aa586f2219a82 2 | -------------------------------------------------------------------------------- /teardrop/teardrop/obj/Debug/teardrop.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | D:\vs\teardrop\teardrop\teardrop\bin\Debug\teardrop.exe.config 2 | D:\vs\teardrop\teardrop\teardrop\bin\Debug\teardrop.exe 3 | D:\vs\teardrop\teardrop\teardrop\bin\Debug\teardrop.pdb 4 | D:\vs\teardrop\teardrop\teardrop\bin\Debug\BouncyCastle.Crypto.dll 5 | D:\vs\teardrop\teardrop\teardrop\bin\Debug\Google.Protobuf.dll 6 | D:\vs\teardrop\teardrop\teardrop\bin\Debug\K4os.Compression.LZ4.dll 7 | D:\vs\teardrop\teardrop\teardrop\bin\Debug\K4os.Compression.LZ4.Streams.dll 8 | D:\vs\teardrop\teardrop\teardrop\bin\Debug\K4os.Hash.xxHash.dll 9 | D:\vs\teardrop\teardrop\teardrop\bin\Debug\MySql.Data.dll 10 | D:\vs\teardrop\teardrop\teardrop\bin\Debug\System.Buffers.dll 11 | D:\vs\teardrop\teardrop\teardrop\bin\Debug\System.Memory.dll 12 | D:\vs\teardrop\teardrop\teardrop\bin\Debug\System.Numerics.Vectors.dll 13 | D:\vs\teardrop\teardrop\teardrop\bin\Debug\System.Runtime.CompilerServices.Unsafe.dll 14 | D:\vs\teardrop\teardrop\teardrop\bin\Debug\Ubiety.Dns.Core.dll 15 | D:\vs\teardrop\teardrop\teardrop\bin\Debug\Zstandard.Net.dll 16 | D:\vs\teardrop\teardrop\teardrop\bin\Debug\Google.Protobuf.pdb 17 | D:\vs\teardrop\teardrop\teardrop\bin\Debug\Google.Protobuf.xml 18 | D:\vs\teardrop\teardrop\teardrop\bin\Debug\K4os.Compression.LZ4.xml 19 | D:\vs\teardrop\teardrop\teardrop\bin\Debug\K4os.Compression.LZ4.Streams.xml 20 | D:\vs\teardrop\teardrop\teardrop\bin\Debug\K4os.Hash.xxHash.xml 21 | D:\vs\teardrop\teardrop\teardrop\bin\Debug\MySql.Data.xml 22 | D:\vs\teardrop\teardrop\teardrop\bin\Debug\System.Buffers.xml 23 | D:\vs\teardrop\teardrop\teardrop\bin\Debug\System.Memory.xml 24 | D:\vs\teardrop\teardrop\teardrop\bin\Debug\System.Numerics.Vectors.xml 25 | D:\vs\teardrop\teardrop\teardrop\bin\Debug\System.Runtime.CompilerServices.Unsafe.xml 26 | D:\vs\teardrop\teardrop\teardrop\obj\Debug\teardrop.Form1.resources 27 | D:\vs\teardrop\teardrop\teardrop\obj\Debug\teardrop.Properties.Resources.resources 28 | D:\vs\teardrop\teardrop\teardrop\obj\Debug\teardrop.csproj.GenerateResource.cache 29 | D:\vs\teardrop\teardrop\teardrop\obj\Debug\teardrop.csproj.CoreCompileInputs.cache 30 | D:\vs\teardrop\teardrop\teardrop\obj\Debug\teardrop.exe 31 | D:\vs\teardrop\teardrop\teardrop\obj\Debug\teardrop.pdb 32 | D:\vs\teardrop\teardrop\teardrop\bin\Debug\DeviceId.dll 33 | D:\vs\teardrop\teardrop\teardrop\bin\Debug\DeviceId.xml 34 | D:\vs\teardrop\teardrop\teardrop\obj\Debug\teardrop.csproj.AssemblyReference.cache 35 | -------------------------------------------------------------------------------- /teardrop/teardrop/obj/Debug/teardrop.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/teardrop/obj/Debug/teardrop.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /teardrop/teardrop/obj/Debug/teardrop.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthedev/teardrop/cb546d21e07ca84f0e4917fabead3f0b167b8502/teardrop/teardrop/obj/Debug/teardrop.pdb -------------------------------------------------------------------------------- /teardrop/teardrop/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /teardrop/teardrop/teardrop.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {82E9CFB5-D664-4C3E-9B55-3B7FBA97EFC2} 8 | WinExe 9 | teardrop 10 | teardrop 11 | v4.7.2 12 | 512 13 | true 14 | true 15 | 16 | 17 | AnyCPU 18 | true 19 | full 20 | false 21 | bin\Debug\ 22 | DEBUG;TRACE 23 | prompt 24 | 4 25 | 26 | 27 | AnyCPU 28 | pdbonly 29 | true 30 | bin\Release\ 31 | TRACE 32 | prompt 33 | 4 34 | 35 | 36 | app.manifest 37 | 38 | 39 | 40 | ..\packages\BouncyCastle.1.8.9\lib\BouncyCastle.Crypto.dll 41 | 42 | 43 | ..\packages\DeviceId.5.2.0\lib\net40\DeviceId.dll 44 | 45 | 46 | ..\packages\Google.Protobuf.3.15.8\lib\net45\Google.Protobuf.dll 47 | 48 | 49 | ..\packages\K4os.Compression.LZ4.1.2.6\lib\net46\K4os.Compression.LZ4.dll 50 | 51 | 52 | ..\packages\K4os.Compression.LZ4.Streams.1.2.6\lib\net46\K4os.Compression.LZ4.Streams.dll 53 | 54 | 55 | ..\packages\K4os.Hash.xxHash.1.0.6\lib\net46\K4os.Hash.xxHash.dll 56 | 57 | 58 | ..\packages\MySql.Data.8.0.24\lib\net452\MySql.Data.dll 59 | 60 | 61 | 62 | ..\packages\System.Buffers.4.5.1\lib\net461\System.Buffers.dll 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | ..\packages\System.Memory.4.5.4\lib\net461\System.Memory.dll 72 | 73 | 74 | 75 | ..\packages\System.Numerics.Vectors.4.5.0\lib\net46\System.Numerics.Vectors.dll 76 | 77 | 78 | ..\packages\System.Runtime.CompilerServices.Unsafe.5.0.0\lib\net45\System.Runtime.CompilerServices.Unsafe.dll 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | ..\packages\MySql.Data.8.0.24\lib\net452\Ubiety.Dns.Core.dll 92 | 93 | 94 | ..\packages\MySql.Data.8.0.24\lib\net452\Zstandard.Net.dll 95 | 96 | 97 | 98 | 99 | 100 | Form 101 | 102 | 103 | Form1.cs 104 | 105 | 106 | 107 | 108 | Form1.cs 109 | 110 | 111 | ResXFileCodeGenerator 112 | Resources.Designer.cs 113 | Designer 114 | 115 | 116 | True 117 | Resources.resx 118 | 119 | 120 | 121 | 122 | SettingsSingleFileGenerator 123 | Settings.Designer.cs 124 | 125 | 126 | True 127 | Settings.settings 128 | True 129 | 130 | 131 | 132 | 133 | 134 | 135 | --------------------------------------------------------------------------------