Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

Commit

Permalink
Feat: add ProductType identifier for HSM C1 (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexandreMunsch committed Feb 6, 2023
1 parent 1e421ce commit f264513
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# *************************************************************************************************
# Copyright (c) 2021 Calypso Networks Association https://calypsonet.org/ *
# Copyright (c) 2023 Calypso Networks Association https://calypsonet.org/ *
# *
# See the NOTICE file(s) distributed with this work for additional information regarding *
# copyright ownership. *
Expand All @@ -14,7 +14,7 @@ PROJECT(CalypsonetTerminalCalypso C CXX)
CMAKE_MINIMUM_REQUIRED(VERSION 3.0)

SET(CMAKE_PROJECT_VERSION_MAJOR "1")
SET(CMAKE_PROJECT_VERSION_MINOR "2")
SET(CMAKE_PROJECT_VERSION_MINOR "3")
SET(CMAKE_PROJECT_VERSION_PATCH "0")

SET(CMAKE_PROJECT_VERSION "${CMAKE_PROJECT_VERSION_MAJOR}.
Expand Down
4 changes: 2 additions & 2 deletions src/main/CalypsoApiProperties.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**************************************************************************************************
* Copyright (c) 2021 Calypso Networks Association https://calypsonet.org/ *
* Copyright (c) 2023 Calypso Networks Association https://calypsonet.org/ *
* *
* See the NOTICE file(s) distributed with this work for additional information regarding *
* copyright ownership. *
Expand Down Expand Up @@ -39,7 +39,7 @@ class CalypsoApiProperties final {
CalypsoApiProperties() {}
};

const std::string CalypsoApiProperties::VERSION = "1.2";
const std::string CalypsoApiProperties::VERSION = "1.3";

}
}
Expand Down
9 changes: 8 additions & 1 deletion src/main/sam/CalypsoSam.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**************************************************************************************************
* Copyright (c) 2022 Calypso Networks Association https://calypsonet.org/ *
* Copyright (c) 2023 Calypso Networks Association https://calypsonet.org/ *
* *
* See the NOTICE file(s) distributed with this work for additional information regarding *
* copyright ownership. *
Expand Down Expand Up @@ -47,6 +47,13 @@ class CalypsoSam : public SmartCard {
*/
SAM_C1,

/**
* SAM C1 HSM
*
* @since 1.3.0
*/
HSM_C1,

/**
* SAM S1E1
*
Expand Down

0 comments on commit f264513

Please sign in to comment.