> Our goal is to help create an entirely new environment where individuals are the custodians of their official records and can easily share those records with others.<p>It doesn't look like they actually need a blockchain for this. They just need an archive of signed documents. They could use a website, or IPFS.<p>Blockchains are hot right now, but they solve a very specific problem: finding consensus on a history of transactions. If you need to prove that a document was signed at a certain point in history, then a blockchain can help. But you don't need one for any of the examples given in this proposal, such as hosting student transcripts.
An open source blockchain technology project...<p>Digital Certificates Project
<a href="http://certificates.media.mit.edu" rel="nofollow">http://certificates.media.mit.edu</a><p>What we learned from designing an academic certificates system on the blockchain
<a href="https://medium.com/mit-media-lab/what-we-learned-from-designing-an-academic-certificates-system-on-the-blockchain-34ba5874f196#.kr7ptdyka" rel="nofollow">https://medium.com/mit-media-lab/what-we-learned-from-design...</a><p>A DSM for Achievement
<a href="https://medium.com/learning-machine-blog/a-dsm-for-achievement-9e52fd881428#.4rv2z0cx1" rel="nofollow">https://medium.com/learning-machine-blog/a-dsm-for-achieveme...</a><p>The Learning Machine blog
<a href="https://medium.com/learning-machine-blog" rel="nofollow">https://medium.com/learning-machine-blog</a>
The Hyperledger Identity Working Group is using these [0] principles of self sovereign identity for guidance. ChrisJ also presented some of his thoughts on a block chain passport [1] from a while ago. Interesting space.<p>[0] <a href="https://github.com/ChristopherA/self-sovereign-identity/blob/master/ThePathToSelf-SovereignIdentity.md" rel="nofollow">https://github.com/ChristopherA/self-sovereign-identity/blob...</a>
[1] <a href="https://github.com/MrChrisJ/World-Citizenship" rel="nofollow">https://github.com/MrChrisJ/World-Citizenship</a>
Excellent project. I think identity and trust are pending issues that need to be explored, perhaps with self-sovereign identity[1]. Curious to see how this project evolves.<p>Fwiw, I've been working on a digital credentialing system for education/training and have testing blockchain notarization. I was aware of this project and very happy to see it release.<p>[1] <a href="http://www.lifewithalacrity.com/2016/04/the-path-to-self-soverereign-identity.html" rel="nofollow">http://www.lifewithalacrity.com/2016/04/the-path-to-self-sov...</a>
Ha! I was working on this very concept for a hackathon at work (edX) as a way to think about the future of credentials / authenticity for students taking ad-hoc courses.<p>It's really cool to see others working on this sort of thing. One of the questions I saw, about identity, reminded me of an idea I had to solve this very problem.<p>The hardest part about putting this stuff on the blockchain is that you need to be able to prove that a transaction (containing your credential metadata) that went to address A is an address you own, that you can sign for. Like the credential proof itself, an easy way to associate ownership is to put some hashed metadata in a transaction, sent from the address you intend to prove you own.<p>This was the hardest part to do, IMO, in a way that is both high-assurance and low complexity. Since academic credentials are most often checked for employment, I thought that maybe using metadata that you wouldn't normally share with anyone except for an employer (like social security #) would be reasonable. Define a list of secret-ish values, define a specification for what values are valid, how to order and format that, and how to generate a hash from it. This way, third-parties are able to independently verify things so long as they can get the values from you.<p>If you wanted to prove to a third-party that you, in fact, are the person (bitcoin address) you say you are, you'd give them the shared bits of information, they would hash it, and then check all the bitcoin transactions and stitch together the web of trust that establishes your credentials. The intention being that you wouldn't normally be compelled to fake credentials for someone else -- take classes and then let them subsume the credit -- because it would involve more than just letting them assume your name, you'd have to give them sensitive values like SSN, etc.<p>Other ideas included something like a standardized format for fingerprint data, or something biometric -- very hard to easily replicate or steal -- as a way to more closer tie the person to their address.. but I couldn't seem to find anything that provided such a standard, and since giving blood or fingerprints is kind of an uneven exchange.. never went down that avenue.<p>I'd really love to see some sort of solution to this.
This is exciting to me. About 3 years ago, I won 250k at the Texas Bitcoin Conference hackathon for this basic concept. I built the platform but then the angel investor that was funding the award changed his mind and backed out because he said there wasn't a market already existing for it and that it was a hard elevator pitch.<p>I sat on the code for years. Oddly enough, in the last month I've been approached by 4 companies asking if I could build them pretty much the same thing so I've brushed off the code and I'm making it so the certified facts about people can be available to DAO's on Ethereum through oracles.<p>This doesn't need to be on a blockchain. As toomim notes, it would be better as just a signed document. I stored all my data in a big json document for every user, sometimes multiple times with different levels of encryption.<p>Most people found that the best way to access the data was with an OAUTH2 gateway. It would allow any kind of website to ask the user to connect their credential gateway to determine if the user could use the site. For instance, an adult site could require a user login with OAUTH2 in order to know that the user is over 18. The user could see in the login dialog what information was being requested. There were tons of potential markets [1]<p>The biggest market I found in all my research was with veterans. Whenever they go to non-profits or social service agencies for help, their military records are requested from the DOD and its a process that takes 4 to 6 weeks. The non-profits were more than happy to receive the records and then digitally sign the results so future service agencies could just query the system. When one agency who provides rental assistance says "Trust me, I verified that John Doe is a veteran with service between 1995 and 2005 who was honorably discharged," a future foodbank he might visit believes it.<p>Data brokers are scum and this kind of system is the best way to put them out of business and remove false data associated with individuals.<p>[1] potential markets I discovered:<p>* Dating sites who want to make sure that users are really in a region, a certain gender, have a certain income, don't have criminal records, etc<p>* job search sites who wanted to be able to let users pre-vet their employment history for possible employers<p>* digital currency services who had to do KYC or verify someone wasn't in a certain area<p>* adult or gambling sites that need to verify ages and/or jurisdictions<p>* newspaper sites who wanted to cut down on comment spam<p>* investing sites that needed to make sure that individuals met the accredited investor criteria<p>* fundraising sites that wanted to make sure people raising funds were who they said they were and that they didn't have a history of fraud<p>A few dozen more.
Code can be found here <a href="https://github.com/digital-certificates" rel="nofollow">https://github.com/digital-certificates</a>