Skip to content

Commit

Permalink
Updated lib/mbedtls to v3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
GlitchedPolygons committed Jan 8, 2022
1 parent fda4dbc commit a4c0763
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
- checkout
- run:
name: Install dependencies
command: 'apt-get update && apt-get install -y sudo git gcc g++ build-essential cmake bash curl uuid-dev && rm -rf /var/lib/apt/lists/*'
command: 'apt-get update && apt-get install -y sudo git gcc g++ build-essential cmake bash curl uuid-dev software-properties-common python && rm -rf /var/lib/apt/lists/*'
- run:
name: Fetch submodules
command: 'git submodule update --init --recursive'
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake" ${CMAKE_MODULE_PATH})

set(${PROJECT_NAME}_MAJOR 4)
set(${PROJECT_NAME}_MINOR 0)
set(${PROJECT_NAME}_PATCH 1)
set(${PROJECT_NAME}_PATCH 2)
set(${PROJECT_NAME}_VERSION_STRING "${${PROJECT_NAME}_MAJOR}.${${PROJECT_NAME}_MINOR}.${${PROJECT_NAME}_PATCH}")

option(${PROJECT_NAME}_ENABLE_TESTS "Build tests." OFF)
Expand Down
4 changes: 2 additions & 2 deletions include/cecies/constants.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ extern "C" {
* The version number of this CECIES implementation.
* TODO: increase this and below string version accordingly BEFORE releasing new updates!
*/
#define CECIES_VERSION 401
#define CECIES_VERSION 402

/**
* The version number of this CECIES implementation (nicely-formatted string).
*/
#define CECIES_VERSION_STR "4.0.1"
#define CECIES_VERSION_STR "4.0.2"

/**
* Key size (in bytes) of an X25519 key (both public and private key have the same length).
Expand Down
2 changes: 1 addition & 1 deletion lib/mbedtls

0 comments on commit a4c0763

Please sign in to comment.