Skip to content

Commit

Permalink
libmbsign: Rename mbsign.{cpp,h} to sign.{cpp,h}
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew Gunnerson <[email protected]>
  • Loading branch information
chenxiaolong committed Jan 28, 2018
1 parent a9d7d12 commit 3054ff4
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion libmbsign/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ foreach(variant ${variants})
${lib_target}
${uvariant}
src/error.cpp
src/mbsign.cpp
src/sign.cpp
)

# Includes
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2016 Andrew Gunnerson <[email protected]>
* Copyright (C) 2016-2018 Andrew Gunnerson <[email protected]>
*
* This file is part of DualBootPatcher
*
Expand Down
4 changes: 2 additions & 2 deletions libmbsign/src/mbsign.cpp → libmbsign/src/sign.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2016 Andrew Gunnerson <[email protected]>
* Copyright (C) 2016-2018 Andrew Gunnerson <[email protected]>
*
* This file is part of DualBootPatcher
*
Expand All @@ -17,7 +17,7 @@
* along with DualBootPatcher. If not, see <http://www.gnu.org/licenses/>.
*/

#include "mbsign/mbsign.h"
#include "mbsign/sign.h"

#include <memory>
#include <string>
Expand Down
2 changes: 1 addition & 1 deletion libmbsign/tests/test_sign.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
#include <openssl/pem.h>
#include <openssl/rsa.h>

#include "mbsign/mbsign.h"
#include "mbsign/sign.h"

using ScopedBIGNUM = std::unique_ptr<BIGNUM, decltype(BN_free) *>;
using ScopedBIO = std::unique_ptr<BIO, decltype(BIO_free) *>;
Expand Down
2 changes: 1 addition & 1 deletion mbtool/signature.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
#endif

#include "mblog/logging.h"
#include "mbsign/mbsign.h"
#include "mbsign/sign.h"

#include "validcerts.h"

Expand Down
2 changes: 1 addition & 1 deletion signtool/signtool.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#include <openssl/err.h>

// libmbsign
#include "mbsign/mbsign.h"
#include "mbsign/sign.h"

using ScopedBIO = std::unique_ptr<BIO, decltype(BIO_free) *>;

Expand Down

0 comments on commit 3054ff4

Please sign in to comment.