From 212056367b28056afc7702fbe11fef0d918cf928 Mon Sep 17 00:00:00 2001 From: Jan Beich Date: Tue, 22 Aug 2017 13:01:20 +0000 Subject: devel/android-tools-{adb,fastboot}: update to 8.0.0.r4 (oreo) Changes: https://android.googlesource.com/platform/system/core/+log/android-7.1.2_r17..android-8.0.0_r4/adb Changes: https://android.googlesource.com/platform/system/core/+log/android-7.1.2_r17..android-8.0.0_r4/fastboot --- .../files/patch-adb_adb__auth__host.cpp | 43 ++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 devel/android-tools-adb/files/patch-adb_adb__auth__host.cpp (limited to 'devel/android-tools-adb/files/patch-adb_adb__auth__host.cpp') diff --git a/devel/android-tools-adb/files/patch-adb_adb__auth__host.cpp b/devel/android-tools-adb/files/patch-adb_adb__auth__host.cpp new file mode 100644 index 000000000000..2fb3e5335c76 --- /dev/null +++ b/devel/android-tools-adb/files/patch-adb_adb__auth__host.cpp @@ -0,0 +1,43 @@ +--- adb/adb_auth_host.cpp.orig 2016-06-29 23:43:15 UTC ++++ adb/adb_auth_host.cpp +@@ -34,7 +34,9 @@ + #include + #include + #include ++#if defined(OPENSSL_IS_BORINGSSL) + #include ++#endif + #include + #include + #include +@@ -70,6 +72,30 @@ static std::string get_user_info() { + return " " + username + "@" + hostname; + } + ++#if !defined(OPENSSL_IS_BORINGSSL) ++// https://boringssl.googlesource.com/boringssl/+/6601402%5E!/ ++static int EVP_EncodedLength(size_t *out_len, size_t len) { ++ if (len + 2 < len) { ++ return 0; ++ } ++ len += 2; ++ len /= 3; ++ ++ if (((len << 2) >> 2) != len) { ++ return 0; ++ } ++ len <<= 2; ++ ++ if (len + 1 < len) { ++ return 0; ++ } ++ len++; ++ ++ *out_len = len; ++ return 1; ++} ++#endif ++ + static bool write_public_keyfile(RSA* private_key, const std::string& private_key_path) { + uint8_t binary_key_data[ANDROID_PUBKEY_ENCODED_SIZE]; + if (!android_pubkey_encode(private_key, binary_key_data, sizeof(binary_key_data))) { -- cgit v1.2.3