Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ac7c74d7 authored by android-build-team Robot's avatar android-build-team Robot
Browse files

Snap for 5939454 from be710464 to rvc-release

Change-Id: I2ea9f92644ae2a686a682c8143fc442af1fc9ec3
parents c1a90e87 be710464
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -310,12 +310,12 @@ genrule {
    srcs: [
        "hci/hci_packets.pdl",
        "l2cap/l2cap_packets.pdl",
        "smp/smp_packets.pdl",
        "security/smp_packets.pdl",
    ],
    out: [
        "hci/hci_packets.h",
        "l2cap/l2cap_packets.h",
        "smp/smp_packets.h",
        "security/smp_packets.h",
    ],
}

+0 −0

File moved.

+3 −3
Original line number Diff line number Diff line
@@ -18,10 +18,10 @@

#include <gtest/gtest.h>

#include "smp/ecc/p_256_ecc_pp.h"
#include "security/ecc/p_256_ecc_pp.h"

namespace bluetooth {
namespace smp {
namespace security {
namespace ecc {

// Test ECC point validation
@@ -108,5 +108,5 @@ TEST(SmpEccValidationTest, test_invalid_points) {
}

}  // namespace ecc
}  // namespace smp
}  // namespace security
}  // namespace bluetooth
+3 −3
Original line number Diff line number Diff line
@@ -22,11 +22,11 @@
 *
 ******************************************************************************/

#include "smp/ecc/multprecision.h"
#include "security/ecc/multprecision.h"
#include <string.h>

namespace bluetooth {
namespace smp {
namespace security {
namespace ecc {

#define DWORD_BITS 32
@@ -500,5 +500,5 @@ void multiprecision_inv_mod(uint32_t* aminus, uint32_t* u, const uint32_t* modp)
}

}  // namespace ecc
}  // namespace smp
}  // namespace security
}  // namespace bluetooth
 No newline at end of file
+2 −2
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@
#include <cstdint>

namespace bluetooth {
namespace smp {
namespace security {
namespace ecc {

#define KEY_LENGTH_DWORDS_P256 8
@@ -52,5 +52,5 @@ void multiprecision_mersenns_squa_mod(uint32_t* c, const uint32_t* a, const uint
void multiprecision_fast_mod_P256(uint32_t* c, const uint32_t* a, const uint32_t* modp);

}  // namespace ecc
}  // namespace smp
}  // namespace security
}  // namespace bluetooth
 No newline at end of file
Loading