-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Offline merchant payments #2
Comments
The Bloom Filter looks like a good idea indeed! About thrusting the Hardware manufacturer, that might not be needed. The hardware can generate it's own private/public key. The bank will just sign it's public key with with expiration and max-spending cost, and allow the ledger to verify it's identity by it using it's own public-key. The merchant, would then use the signature from the Bank given to the tapFi to trust payments. That way, we don't have to store tapFi's information on the Store, neither manufacturer. What do you think? |
Banks would not want to sign the public key of a device that's trivial to tamper with. You need assurance from the hardware manufacturer that the device will not spend more offline than it's supposed to AND that the user can't just open the device and disable that check. |
That makes sense.. so, why not validating that on the Ledger during the sign of the key of the tapFi? Then, only banks would need to know about the Hardware's. Pros are:
|
I think the following information should be signed by the ledger owner (i.e. your bank) and stored in a TapFI:
In this scenario, we assume the private key can not be extracted from the tapfi, even if an attacker has physical access to the device. If the device would be handed out by the ledger owner, he would only hand out such devices that he trusts to be tamper-resistant (this would address Evan's comment) |
From Security Issue #2:
The merchant needs to trust both the ledger, the tapFi hardware manufacturer, and the particular tapFi device. This suggests the tapFi device will need to have a key embedded by the manufacturer that is signed by both the manufacturer and the ledger, and the tapFi should store the certificates of both the ledger and manufacturer.
For blacklisting compromised devices, @justmoon suggested using a Bloom Filter that could be maintained by some data provider and merchants could subscribe to receive regular updates.
The text was updated successfully, but these errors were encountered: