Vision of Digital Processor

Pay for storage using Proof of Retrievability on Bitcoin

This post was first published on Medium.

We develop a novel method for a user to pay for cloud storage. Compared to traditional cloud storage such as Amazon’s S3, the user does not have to trust the server. We use Bitcoin smart contracts to ensure the payment is contingent upon the server‘s Proof of Retrievability (PoR), which can only be produced if the data is still available and can be retrieved if needed.

Proof of Retrievability (PoR)

Many people outsource storage by uploading their data (like music, photos, and documents) to remote servers for reliability and easy accessibility from many devices, including mobile phones and laptops.

These users are at the mercy of their storage providers and have to trust the servers. A malicious server may discard the data to save resources if it is rarely accessed, or cover up data loss accident to protect their reputation.

A PoR scheme is a cryptographic protocol that would allow a user, or a third party, like an auditor, to verify that the server stores his data. Such an auditing capability reassures a user his data is still being stored. It can also be crucial to storage providers like an unknown startup since users may be reluctant to entrust their data to the startup otherwise.

Pay for Storage using PoR

A naïve PoR is for the user to simply request the server to download all of the data and verify authenticity. However, this is enormously inefficient when the stored data is large.

The Shacham/Waters PoR scheme¹ is an efficient audit protocol between client and server. A server that passes the audit must know all of the client data. It is also publicly verifiable, which is needed when we verify the proof in a smart contract.

A file is first encoded with erasure codes, a type of error correcting codesto allow recovery even if the server loses a fraction² of the file. The coded file is divided into n blocks. For each block, a tag or authenticator is computed and both are sent to the server.

To test if the server still has the file, the user randomly selects a set of blocks in a challenge. The server, upon receiving the challenge, needs to send back a response, which is verified by the user.

pay-for-storage-using-proof-of-retrievability-on-bitcoin-1
PORs: Proofs of Retrievability for Large Files

Formally, the Shacham/Waters PoR consists of three steps.

pay-for-storage-using-proof-of-retrievability-on-bitcoin-2

pay-for-storage-using-proof-of-retrievability-on-bitcoin-3

We need a noninteractive protocol in a blockchain setting, where the user/verifier and server/prover do not have to communicate back and forth. In step 1, we let that the prover, the server, in this case, generates challenges by himself. To ensure an unbiased challenge, we need publicly traceable and uncontrollable randomness source, e.g., the latest blockhash. In step 2, the server generates the PoR off chain based on challenges in step 1. In step 3, a smart contract verifies the PoR. The verification needs elliptic curve arithmetic and pairing, both of which have been implemented.

The user deploys a smart contract, which only releases funds if a valid PoR is provided. The server can only be paid if he can submit a valid PoR, which he can only produce if he is still storing the user’s file.

Recurring payments

We can extend the one-time payment to a subscription by adding recurring payments on top, so that the server is paid periodically a fixed amount.

[1] Compact Proofs of Retrievability by H Shacham 2008

[2] The fraction depends on the rate of the error-correcting.

Watch: The BSV Global Blockchain Convention panel, Build on Blockchain: Common Challenges & Tools to Make it Easier

YouTube video

New to blockchain? Check out CoinGeek’s Blockchain for Beginners section, the ultimate resource guide to learn more about blockchain technology.