-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add dilithium standalone functionality
correction of dilithium based on rnp feedback
- Loading branch information
1 parent
15207d5
commit 4fdff8a
Showing
9 changed files
with
452 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
/* | ||
* Copyright (c) 2023 MTG AG | ||
* All rights reserved. | ||
* | ||
* This code is originally derived from software contributed to | ||
* The NetBSD Foundation by Alistair Crooks ([email protected]), and | ||
* carried further by Ribose Inc (https://www.ribose.com). | ||
* | ||
* Redistribution and use in source and binary forms, with or without | ||
* modification, are permitted provided that the following conditions | ||
* are met: | ||
* 1. Redistributions of source code must retain the above copyright | ||
* notice, this list of conditions and the following disclaimer. | ||
* 2. Redistributions in binary form must reproduce the above copyright | ||
* notice, this list of conditions and the following disclaimer in the | ||
* documentation and/or other materials provided with the distribution. | ||
* | ||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED | ||
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | ||
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS | ||
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | ||
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | ||
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | ||
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | ||
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | ||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | ||
* POSSIBILITY OF SUCH DAMAGE. | ||
*/ | ||
|
||
#include "dilithium.h" | ||
#include <cassert> | ||
|
||
namespace { | ||
|
||
Botan::DilithiumMode | ||
rnp_dilithium_param_to_botan_dimension(dilithium_parameter_e mode) | ||
{ | ||
Botan::DilithiumMode result = Botan::DilithiumMode::Dilithium8x7; | ||
if (mode == dilithium_parameter_e::dilithium_L3) { | ||
result = Botan::DilithiumMode::Dilithium6x5; | ||
} | ||
return result; | ||
} | ||
|
||
} // namespace | ||
|
||
std::vector<uint8_t> | ||
pgp_dilithium_private_key_t::sign(rnp::RNG *rng, const uint8_t *msg, size_t msg_len) const | ||
{ | ||
assert(is_initialized_); | ||
auto priv_key = botan_key(); | ||
|
||
auto signer = Botan::PK_Signer(priv_key, *rng->obj(), ""); | ||
std::vector<uint8_t> signature = signer.sign_message(msg, msg_len, *rng->obj()); | ||
// std::vector<uint8_t> signature; | ||
|
||
return signature; | ||
} | ||
|
||
Botan::Dilithium_PublicKey | ||
pgp_dilithium_public_key_t::botan_key() const | ||
{ | ||
return Botan::Dilithium_PublicKey(key_encoded_, | ||
rnp_dilithium_param_to_botan_dimension(dilithium_param_)); | ||
} | ||
|
||
Botan::Dilithium_PrivateKey | ||
pgp_dilithium_private_key_t::botan_key() const | ||
{ | ||
Botan::secure_vector<uint8_t> priv_sv(key_encoded_.data(), | ||
key_encoded_.data() + key_encoded_.size()); | ||
return Botan::Dilithium_PrivateKey( | ||
priv_sv, rnp_dilithium_param_to_botan_dimension(this->dilithium_param_)); | ||
} | ||
|
||
bool | ||
pgp_dilithium_public_key_t::verify_signature(const uint8_t *msg, | ||
size_t msg_len, | ||
const uint8_t *signature, | ||
size_t signature_len) const | ||
{ | ||
assert(is_initialized_); | ||
auto pub_key = botan_key(); | ||
|
||
auto verificator = Botan::PK_Verifier(pub_key, ""); | ||
return verificator.verify_message(msg, msg_len, signature, signature_len); | ||
} | ||
|
||
std::pair<pgp_dilithium_public_key_t, pgp_dilithium_private_key_t> | ||
dilithium_generate_keypair( | ||
rnp::RNG *rng, dilithium_parameter_e dilithium_param) | ||
{ | ||
Botan::Dilithium_PrivateKey priv_key(*rng->obj(), | ||
rnp_dilithium_param_to_botan_dimension(dilithium_param)); | ||
|
||
std::unique_ptr<Botan::Public_Key> pub_key = priv_key.public_key(); | ||
Botan::secure_vector<uint8_t> priv_bits = priv_key.private_key_bits(); | ||
return std::make_pair( | ||
pgp_dilithium_public_key_t(pub_key->public_key_bits(), dilithium_param), | ||
pgp_dilithium_private_key_t(priv_bits.data(), priv_bits.size(), dilithium_param)); | ||
} | ||
|
||
bool | ||
pgp_dilithium_public_key_t::is_valid(rnp::RNG *rng) const { | ||
if(!is_initialized_) { | ||
return false; | ||
} | ||
|
||
auto key = botan_key(); | ||
return key.check_key(*(rng->obj()), false); | ||
} | ||
|
||
bool | ||
pgp_dilithium_private_key_t::is_valid(rnp::RNG *rng) const { | ||
if(!is_initialized_) { | ||
return false; | ||
} | ||
|
||
auto key = botan_key(); | ||
return key.check_key(*(rng->obj()), false); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
/* | ||
* Copyright (c) 2023 MTG AG | ||
* All rights reserved. | ||
* | ||
* This code is originally derived from software contributed to | ||
* The NetBSD Foundation by Alistair Crooks ([email protected]), and | ||
* carried further by Ribose Inc (https://www.ribose.com). | ||
* | ||
* Redistribution and use in source and binary forms, with or without | ||
* modification, are permitted provided that the following conditions | ||
* are met: | ||
* 1. Redistributions of source code must retain the above copyright | ||
* notice, this list of conditions and the following disclaimer. | ||
* 2. Redistributions in binary form must reproduce the above copyright | ||
* notice, this list of conditions and the following disclaimer in the | ||
* documentation and/or other materials provided with the distribution. | ||
* | ||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED | ||
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | ||
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS | ||
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | ||
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | ||
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | ||
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | ||
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | ||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | ||
* POSSIBILITY OF SUCH DAMAGE. | ||
*/ | ||
|
||
#ifndef DILITHIUM_H_ | ||
#define DILITHIUM_H_ | ||
|
||
#include "config.h" | ||
#include <rnp/rnp_def.h> | ||
#include <vector> | ||
#include <repgp/repgp_def.h> | ||
#include "crypto/rng.h" | ||
#include <botan/dilithium.h> | ||
#include <botan/pubkey.h> | ||
|
||
enum dilithium_parameter_e { dilithium_L3, dilithium_L5 }; | ||
|
||
class pgp_dilithium_private_key_t { | ||
public: | ||
pgp_dilithium_private_key_t(const uint8_t * key_encoded, | ||
size_t key_encoded_len, | ||
dilithium_parameter_e param); | ||
pgp_dilithium_private_key_t(std::vector<uint8_t> const &key_encoded, | ||
dilithium_parameter_e param); | ||
pgp_dilithium_private_key_t() = default; | ||
|
||
bool is_valid(rnp::RNG *rng) const; | ||
|
||
dilithium_parameter_e | ||
param() const | ||
{ | ||
return dilithium_param_; | ||
} | ||
|
||
std::vector<uint8_t> sign(rnp::RNG *rng, const uint8_t *msg, size_t msg_len) const; | ||
std::vector<uint8_t> | ||
get_encoded() const | ||
{ | ||
return Botan::unlock(key_encoded_); | ||
}; | ||
|
||
private: | ||
Botan::Dilithium_PrivateKey botan_key() const; | ||
|
||
Botan::secure_vector<uint8_t> key_encoded_; | ||
dilithium_parameter_e dilithium_param_; | ||
bool is_initialized_ = false; | ||
}; | ||
|
||
class pgp_dilithium_public_key_t { | ||
public: | ||
pgp_dilithium_public_key_t(const uint8_t * key_encoded, | ||
size_t key_encoded_len, | ||
dilithium_parameter_e mode); | ||
pgp_dilithium_public_key_t(std::vector<uint8_t> const &key_encoded, | ||
dilithium_parameter_e mode); | ||
pgp_dilithium_public_key_t() = default; | ||
|
||
bool operator==(const pgp_dilithium_public_key_t &rhs) const | ||
{ | ||
return (dilithium_param_ == rhs.dilithium_param_) && (key_encoded_ == rhs.key_encoded_); | ||
} | ||
|
||
bool verify_signature(const uint8_t *msg, | ||
size_t msg_len, | ||
const uint8_t *signature, | ||
size_t signature_len) const; | ||
|
||
bool is_valid(rnp::RNG *rng) const; | ||
|
||
std::vector<uint8_t> | ||
get_encoded() const | ||
{ | ||
return key_encoded_; | ||
}; | ||
|
||
private: | ||
Botan::Dilithium_PublicKey botan_key() const; | ||
|
||
std::vector<uint8_t> key_encoded_; | ||
dilithium_parameter_e dilithium_param_; | ||
bool is_initialized_ = false; | ||
}; | ||
|
||
std::pair<pgp_dilithium_public_key_t, pgp_dilithium_private_key_t> dilithium_generate_keypair( | ||
rnp::RNG *rng, dilithium_parameter_e dilithium_param); | ||
|
||
#endif |
Oops, something went wrong.