├── .git-hooks └── pre_commit │ ├── copyright.rb │ ├── file_encoding.rb │ └── single_newline_at_eof.rb ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── build.yml │ ├── checks.yml │ └── update-version.yml ├── .gitignore ├── .overcommit.yml ├── .yamllint.yml ├── LICENSE.txt ├── README.md ├── dropbear-version ├── localoptions.h └── pom.xml /.git-hooks/pre_commit/copyright.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ribbons/android-dropbear/HEAD/.git-hooks/pre_commit/copyright.rb -------------------------------------------------------------------------------- /.git-hooks/pre_commit/file_encoding.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ribbons/android-dropbear/HEAD/.git-hooks/pre_commit/file_encoding.rb -------------------------------------------------------------------------------- /.git-hooks/pre_commit/single_newline_at_eof.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ribbons/android-dropbear/HEAD/.git-hooks/pre_commit/single_newline_at_eof.rb -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | .git-hooks/** linguist-vendored 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ribbons/android-dropbear/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ribbons/android-dropbear/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ribbons/android-dropbear/HEAD/.github/workflows/checks.yml -------------------------------------------------------------------------------- /.github/workflows/update-version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ribbons/android-dropbear/HEAD/.github/workflows/update-version.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | buildinfo/ 2 | dropbear/ 3 | -------------------------------------------------------------------------------- /.overcommit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ribbons/android-dropbear/HEAD/.overcommit.yml -------------------------------------------------------------------------------- /.yamllint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ribbons/android-dropbear/HEAD/.yamllint.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ribbons/android-dropbear/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ribbons/android-dropbear/HEAD/README.md -------------------------------------------------------------------------------- /dropbear-version: -------------------------------------------------------------------------------- 1 | DROPBEAR_2025.88 2 | -------------------------------------------------------------------------------- /localoptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ribbons/android-dropbear/HEAD/localoptions.h -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ribbons/android-dropbear/HEAD/pom.xml --------------------------------------------------------------------------------