aboutsummaryrefslogtreecommitdiff
path: root/src/exchange/taler-exchange-httpd.c
AgeCommit message (Collapse)Author
2023-03-09retry on failureChristian Grothoff
2023-03-05fix permissions, default to UNIX, improve loggingChristian Grothoff
2023-02-19check currency matches before proceedingChristian Grothoff
2023-02-19return KYC requirement row when AML imposed KYC requirements on withdraw; ↵Christian Grothoff
return KYC choices in new /config endpoint
2023-02-12-more work on AML triggers for P2P transfersChristian Grothoff
2023-02-04add tests for new AML logic, plus related bugfixesChristian Grothoff
2023-02-03implement testing_api_cmd_take_aml_decision.cChristian Grothoff
2023-02-02draft for the AML GET decision endpointChristian Grothoff
2023-02-02first draft of implementation of GET AML decisions endpointChristian Grothoff
2023-01-27update GET attest logic now that it is clear that we must store KYC ↵Christian Grothoff
attributes locally:
2023-01-21add new endpoints to main dispatcherChristian Grothoff
2023-01-16-fix KYC logic change to work for all plugins and not just OAuth2.0Christian Grothoff
2022-12-28integrate DELETE into dispatcher, remove legacy KYC codeChristian Grothoff
2022-12-27-first sketch for purse delete handlerChristian 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-10-12-work on reserve control testsChristian Grothoff
2022-10-12-update to latest GNUNET_PQ_make_prepare() APIChristian Grothoff
2022-10-02taler-exchange-httpd_reserves_open.c now builds (but not complete)Christian Grothoff
2022-08-19add user type to kyc-checkChristian Grothoff
2022-08-16allow merge into non-existent reserve if KYC is disabledChristian Grothoff
2022-08-11major rework of the KYC logic, making it more configurable, not complete, ↵Christian Grothoff
but tests pass again
2022-08-07-start kyc-tester helperChristian Grothoff
2022-07-30finish taler-exchange-drain implementationChristian Grothoff
2022-07-29add /management/drain handlerChristian Grothoff
2022-07-01-add test for batch depositsChristian Grothoff
2022-06-26-fix misc doxygen warnings, code clean upChristian Grothoff
2022-05-01add batch withdraw to demultiplexerChristian Grothoff
2022-04-26various age restriction fixes, some of them half-bakedFlorian Dold
2022-04-23integrate p2p handlers with main dispatcherChristian Grothoff
2022-04-16add more flexibility to endpoint naming for KYCChristian Grothoff
2022-04-11-towards new GET /contracts/$C_PUB handerChristian Grothoff
2022-03-21first rough-cut implementation of /reserves//history endpointChristian Grothoff
2022-03-21first rough-cut implementation of POST /reserves//statusChristian Grothoff
2022-03-05add more logic for new global feesChristian Grothoff
2022-03-04improve URI path checking, make it more strict and simplify logicChristian Grothoff
2022-02-21-big renaming of structs for consistent naming with P suffixChristian 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
2022-02-12-doxygen fixesChristian Grothoff
2022-02-04split tests by rsa/csChristian Grothoff
2022-02-04implement CS key handling and csr endpointLucien Heuzeveldt
2022-01-23[age_restriction] progress 13/nÖzgür Kesim
- major refactoring of extensions - extensions live now in a separate library, libtalerextensions - refactored all components using age_restriction accordingly - plumbing for plugin support for extensions roughly layed down
2022-01-22improvements in extension handlingÖzgür Kesim
- extensions_sig is needed globally - keep original json with config of extension - fixed various bugs re: extension handling
2022-01-08[age restriction] progress 10/nÖzgür Kesim
More work towards support for extensions: - Prepared statements and DB-plugin-functions for setting and retrieving configurations from the database added. - primitive "registry" of extensions for age restrictions and peer2peer (stub) - TALER_Extensions now with FP for parsing, setting and converting a configuration. - /management/extensions handler now verifies signature of the (opaque) json object for all extensions. - /management/extensions handler calls the FP in the corrensponding TALER_Extension for parsing and setting the configuration of a particular extension More work towards age restriction: - TALER_Extensions interfaces for config-parser, -setter and converter implemented for age restriction - DB event handler now retrieves config from database, parses it and sets it (the age mask) in the global extension. - load_age_mask now loads age mask from the global extension (and not from the config file) - add age_restricted_denoms to /keys response
2021-12-27[age restriction] progress 9/nÖzgür Kesim
More worke towards support for extensions and age restriction: - taler-exchange-httpd_management_extensions.c almost completed - handling of request implemented - stub "set_extensions" for database transaction added - utility functions added - TALER_exchange_offline_extension_agemask_{sign,verify} - TALER_agemask_parse_json
2021-12-25-add missing #includeChristian Grothoff
2021-12-25protocol v12 changes (/recoup split, signature changes) plus database ↵Christian Grothoff
sharding plus O(n^2)=>O(n) worst-case complexity reduction on coin balance checks
2021-12-23[age restriction] progress 8/nÖzgür Kesim
More work towards support for extensions and age restriction - updated gana - added handler for DB-Event - added TEH_extensions_init() and _done() - added global for age restriction - added stub for post handler - added SQL-table for extension metadata - added enum type for extensions and other data structures Also: - fixed some warnings -Wmaybe-unitialized
2021-12-09add latency loggingChristian Grothoff
2021-12-08fix error handling for very large uploads, fix re-generation of /keys ↵Christian Grothoff
response after Expires expires