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

Commit 4b3500a1 authored by Jakub Pawlowski's avatar Jakub Pawlowski Committed by android-build-merger
Browse files

Rename "smp" to "security" am: 519645d5 am: c2357013

am: e03df6b2

Change-Id: I233e013ea007436ab4b298f425dcc87e2fac6076
parents 978b0144 e03df6b2
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