summaryrefslogtreecommitdiff
path: root/src/util/taler-exchange-secmod-rsa.c
diff options
context:
space:
mode:
authorÖzgür Kesim <oec-taler@kesim.org>2021-11-14 16:39:42 +0100
committerÖzgür Kesim <oec-taler@kesim.org>2021-11-14 16:39:42 +0100
commitc97979d00ab68915b0d354a1424e420ef84b7723 (patch)
tree7990098ab493ea5e164120f630e06c8fc6e5cc02 /src/util/taler-exchange-secmod-rsa.c
parent7c510388b9d789c35fc05bead7677b3de52a318e (diff)
downloadexchange-c97979d00ab68915b0d354a1424e420ef84b7723.tar.gz
exchange-c97979d00ab68915b0d354a1424e420ef84b7723.tar.bz2
exchange-c97979d00ab68915b0d354a1424e420ef84b7723.zip
age restriction (load per denomination). 3/n
Diffstat (limited to 'src/util/taler-exchange-secmod-rsa.c')
-rw-r--r--src/util/taler-exchange-secmod-rsa.c27
1 files changed, 25 insertions, 2 deletions
diff --git a/src/util/taler-exchange-secmod-rsa.c b/src/util/taler-exchange-secmod-rsa.c
index e996f14ee..49b241b21 100644
--- a/src/util/taler-exchange-secmod-rsa.c
+++ b/src/util/taler-exchange-secmod-rsa.c
@@ -39,6 +39,7 @@
#include <pthread.h>
#include <sys/eventfd.h>
#include "taler_error_codes.h"
+#include "taler_extensions.h"
#include "taler_signatures.h"
#include "secmod_common.h"
@@ -151,6 +152,14 @@ struct Denomination
* Length of (new) RSA keys (in bits).
*/
uint32_t rsa_keysize;
+
+ /**
+ * Age Restriction Mask.
+ * If non-zero, it defines the age restriction groups that apply to this
+ * denomination.
+ */
+ struct TALER_AgeMask age_mask;
+
};
@@ -1422,10 +1431,9 @@ parse_key (struct Denomination *denom,
struct TALER_DenominationPublicKey pub;
struct DenominationKey *dk;
struct DenominationKey *before;
- struct TALER_AgeMask age_mask = { .mask = 0 }; /* FIXME-Oec */
TALER_denom_priv_to_pub (&priv,
- age_mask,
+ denom->age_mask,
&pub);
dk = GNUNET_new (struct DenominationKey);
dk->denom_priv = priv;
@@ -1645,6 +1653,21 @@ parse_denomination_cfg (const char *ct,
}
denom->rsa_keysize = (unsigned int) rsa_keysize;
denom->section = GNUNET_strdup (ct);
+
+ /* Load the (optional) age groups/mask for this denomination */
+ denom->age_mask.mask = 0;
+ if (GNUNET_YES != GNUNET_CONFIGURATION_get_value_yesno (kcfg, ct,
+ "age-restricted"))
+ {
+ if (GNUNET_OK != TALER_get_age_mask (kcfg, &denom->age_mask))
+ {
+ GNUNET_log_config_invalid (GNUNET_ERROR_TYPE_ERROR,
+ "extenstions",
+ "age-restriction",
+ "invalid age groups");
+ return GNUNET_SYSERR;
+ }
+ }
return GNUNET_OK;
}