aboutsummaryrefslogtreecommitdiff
path: root/src/exchange/taler-exchange-httpd_keys.c
AgeCommit message (Collapse)Author
2023-03-08fix #7744Christian Grothoff
2023-03-08style fixChristian Grothoff
2023-02-19-fix more memory leaksChristian Grothoff
2023-02-19-fix memory leakChristian Grothoff
2023-02-19return KYC requirement row when AML imposed KYC requirements on withdraw; ↵Christian Grothoff
return KYC choices in new /config endpoint
2023-01-17eventually kick out /keys clients also if ksh exists but krd array is emptyChristian Grothoff
2022-12-11add asset_type to /keys responseChristian Grothoff
2022-11-20Call TEH_keys_update_state on extension config changeÖzgür Kesim
Fixes #7266 Also better API: - TEH_keys_get_state and - TEH_keys_get_state_for_management_only
2022-11-14more refactoring towards #7272Christian Grothoff
2022-11-14-refactoring in preparation of fixing #7272Christian Grothoff
2022-11-13refactor CS derive API in preparation for batch APIChristian Grothoff
2022-11-13API refactoring towards batch CSChristian Grothoff
2022-11-04return base url as part of /keysChristian Grothoff
2022-11-04policy extensions and age restriction refactoringÖzgür Kesim
- refactoring of extension-plugin-mechanism - refactoring of age restriction extension - added policy extensions plugin plumbing - added DB schema and api - policy_details - policy_fulfillments
2022-11-01remove wad fee, kyc fee and kyc-timeoutChristian Grothoff
2022-08-11-fix typosChristian Grothoff
2022-08-11major rework of the KYC logic, making it more configurable, not complete, ↵Christian Grothoff
but tests pass again
2022-07-06-fix typosChristian Grothoff
2022-07-01-exchange_api_batch_deposit.c compilesChristian Grothoff
2022-06-29version bump due to new /keys responseÖzgür Kesim
2022-06-29-actually fix compatibility break from OecChristian Grothoff
2022-06-29-trying to fix demoChristian Grothoff
2022-06-29-trying to fix demoChristian Grothoff
2022-06-29-fix /keys initialization DB logicChristian Grothoff
2022-06-29-style fixChristian Grothoff
2022-06-27better api for parsing a denomination groupÖzgür Kesim
2022-06-27[new /keys response] added proper hash verificationÖzgür Kesim
- Running XOR of all SHA-512 hashes of each denomination's public key is compared against the "hash" value in the JSON blob. - Fixed a bug during creation of the running XOR.
2022-06-26[new /keys response] create and parse denomination implementedÖzgür Kesim
- /keys response now contains signed denomintations - hashes of denominations now XOR'ed per group into a single hash-code - final hash-code is now XOR of all group hash codes - final hash-code is signed - lib/exchange_api_handle support for new "denominations" implemented - parses array of denomation groups - creates running xor of hashes - verifies signature at the end - previous diff/merge logic for keys remains intact.
2022-06-24-cleanup commentsÖzgür Kesim
2022-06-23first steps towards new /keys response: grouped denominations addedÖzgür Kesim
2022-06-14-fix commentsChristian Grothoff
2022-05-30-sketch API for RSA parallel signingChristian Grothoff
2022-05-17-check for ETag in request, generate 304 if applicableChristian Grothoff
2022-05-17keep ETag aroundChristian Grothoff
2022-05-17add ETag to /keys responseChristian Grothoff
2022-05-16improve cache control support for /wire, /keys and legalChristian Grothoff
2022-05-12add Etag and 'expires' to /wireChristian Grothoff
2022-04-26various age restriction fixes, some of them half-bakedFlorian Dold
2022-04-23-work on p2p paymentsChristian Grothoff
2022-03-29centralize exchange online signature logicChristian Grothoff
2022-03-20towards support for new reserve history/status APIsChristian Grothoff
2022-03-20return new global fees from /keysChristian Grothoff
2022-03-17more explicit cipher usage countersMarco Boss
2022-03-14add metrics for number of crypto operationsMarco Boss
2022-03-02-refactor TALER_AgeMask.mask -> TALER_AgeMask.bitsÖzgür Kesim
also: fix off-by-one in TALER_age_restriction_commit
2022-02-21-big renaming of structs for consistent naming with P suffixChristian Grothoff
2022-02-20-ensure different HKDF is used in melt vs. withdrawChristian Grothoff
2022-02-17-fix bad choice during mergeChristian Grothoff
2022-02-17-fix CS nonce reuse check logicChristian Grothoff
2022-02-16[age restriction] progress 14/n - withdraw and depositÖzgür Kesim
Age restriction support for - withdraw is done and tested - deposit is done and tested TODOs: - melt/refresh/reveal - link ------ Added functions - TALER_age_restriction_commit - TALER_age_commitment_derive - TALER_age_commitment_hash - TALER_age_restriction_commitment_free_inside - Hash of age commitment passed around API boundaries Exchangedb adjustments for denominations - all prepared statements re: denominations now handle age_mask - signature parameters adjusted Hash and signature verification of /keys adjusted - Hashes of (normal) denominations and age-restricted denominations are calculated seperately - The hash of the age-restricted ones will then be added to the other hash - The total hash is signed/verified Tests for withdraw with age restriction added - TALER_EXCHANGE_DenomPublickey now carries age_mask - TALER_TESTING_cmd_withdraw_amount* takes age parameter - TALER_TESTING_find_pk takes boolean age_restricted - WithdrawState carries age_commitment and its hash - withdraw_run derives new age commitment, if applicable - Added age parameter to testing (13 as example) Various Fixes and changes - Fixes of post handler for /management/extensions - Fixes for offline tool extensions signing - Slight refactoring of extensions - Age restriction extension simplified - config is now global to extension - added global TEH_age_restriction_enabled and TEH_age_mask in taler-exchange-httpd - helper functions and macros introduced