and add the Enterprise / Commercial licensing option.
Main changes:
- Replace GPLv3 headers with AGPLv3 headers in source files.
- Update LICENSE file to the full AGPLv3 text.
- Add ENTERPRISE.md describing the dual-licensing model:
* Community Edition: AGPLv3 (strong copyleft, including network use).
* Enterprise / Commercial Edition: proprietary license for production /
multi-user / OEM use without the obligation to disclose derivative code.
- Update README with a new "License and Commercial Use" section pointing to
ENTERPRISE.md and clarifying how companies can obtain a commercial license.
Why this change:
- AGPLv3 ensures that modified versions offered as a service or deployed
in production environments must provide corresponding source code.
- The Enterprise / Commercial edition provides organizations with an
alternative proprietary license that allows internal, large-scale, or OEM
use (bulk provisioning, policy enforcement, inventory / revocation,
custom attestation, signed builds) without AGPL disclosure obligations.
This commit formally marks the first release that is dual-licensed:
AGPLv3 for the Community Edition and a proprietary commercial license
for Enterprise customers.
Signed-off-by: Pol Henarejos <pol.henarejos@cttc.es>
64 lines
2.1 KiB
C
64 lines
2.1 KiB
C
/*
|
|
* This file is part of the Pico HSM distribution (https://github.com/polhenarejos/pico-hsm).
|
|
* Copyright (c) 2022 Pol Henarejos.
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
* the Free Software Foundation, version 3.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "sc_hsm.h"
|
|
|
|
int cmd_verify() {
|
|
uint8_t p1 = P1(apdu);
|
|
uint8_t p2 = P2(apdu);
|
|
|
|
if (p1 != 0x0 || (p2 & 0x60) != 0x0) {
|
|
return SW_WRONG_P1P2();
|
|
}
|
|
|
|
if (p2 == 0x81) { //UserPin
|
|
uint16_t opts = get_device_options();
|
|
if (opts & HSM_OPT_TRANSPORT_PIN) {
|
|
return SW_DATA_INVALID();
|
|
}
|
|
if (has_session_pin && apdu.nc == 0) {
|
|
return SW_OK();
|
|
}
|
|
if (*file_get_data(file_pin1) == 0 && pka_enabled() == false) { //not initialized
|
|
return SW_REFERENCE_NOT_FOUND();
|
|
}
|
|
if (apdu.nc > 0) {
|
|
return check_pin(file_pin1, apdu.data, (uint16_t)apdu.nc);
|
|
}
|
|
if (file_read_uint8(file_retries_pin1) == 0) {
|
|
return SW_PIN_BLOCKED();
|
|
}
|
|
return set_res_sw(0x63, 0xc0 | file_read_uint8(file_retries_pin1));
|
|
}
|
|
else if (p2 == 0x88) { //SOPin
|
|
if (file_read_uint8(file_sopin) == 0) { //not initialized
|
|
return SW_REFERENCE_NOT_FOUND();
|
|
}
|
|
if (apdu.nc > 0) {
|
|
return check_pin(file_sopin, apdu.data, (uint16_t)apdu.nc);
|
|
}
|
|
if (file_read_uint8(file_retries_sopin) == 0) {
|
|
return SW_PIN_BLOCKED();
|
|
}
|
|
if (has_session_sopin) {
|
|
return SW_OK();
|
|
}
|
|
return set_res_sw(0x63, 0xc0 | file_read_uint8(file_retries_sopin));
|
|
}
|
|
return SW_REFERENCE_NOT_FOUND();
|
|
}
|