Base class for EdDSA family of algorithms.
More...
#include <jwt.h>
|
| eddsa (const std::string &public_key, const std::string &private_key, const std::string &public_key_password, const std::string &private_key_password, std::string name) |
|
std::string | sign (const std::string &data, std::error_code &ec) const |
|
void | verify (const std::string &data, const std::string &signature, std::error_code &ec) const |
|
std::string | name () const |
|
Base class for EdDSA family of algorithms.
https://tools.ietf.org/html/rfc8032
The EdDSA algorithms were introduced in OpenSSL v1.1.1, so these algorithms are only available when building against this version or higher.
◆ eddsa()
jwt::algorithm::eddsa::eddsa |
( |
const std::string & | public_key, |
|
|
const std::string & | private_key, |
|
|
const std::string & | public_key_password, |
|
|
const std::string & | private_key_password, |
|
|
std::string | name ) |
|
inline |
Construct new eddsa algorithm
- Parameters
-
public_key | EdDSA public key in PEM format |
private_key | EdDSA private key or empty string if not available. If empty, signing will always fail. |
public_key_password | Password to decrypt public key pem. |
private_key_password | Password to decrypt private key pem. |
name | Name of the algorithm |
◆ name()
std::string jwt::algorithm::eddsa::name |
( |
| ) |
const |
|
inline |
Returns the algorithm name provided to the constructor
- Returns
- algorithm's name
◆ sign()
std::string jwt::algorithm::eddsa::sign |
( |
const std::string & | data, |
|
|
std::error_code & | ec ) const |
|
inline |
Sign jwt data
- Parameters
-
data | The data to sign |
ec | error_code filled with details on error |
- Returns
- EdDSA signature for the given data
◆ verify()
void jwt::algorithm::eddsa::verify |
( |
const std::string & | data, |
|
|
const std::string & | signature, |
|
|
std::error_code & | ec ) const |
|
inline |
Check if signature is valid
- Parameters
-
data | The data to check signature against |
signature | Signature provided by the jwt |
ec | Filled with details on error |
The documentation for this struct was generated from the following file: