Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
blockchain_proof
Advanced tools
bThe_Blockchain_Proof_API_is_an_easy_to_prove_existence_of__binary_data_at_a_certain_point_in_time__Behinde_the_scenes_it_stores_entries_using_the_Factom__bitcoin_blockchain_by_means_of_our_generic_blockchain_API_bThe_flow_is_generally_as_follows1__Make_s
BlockchainProof - JavaScript client for blockchain_proof The Blockchain Proof API is an easy to prove existence of (binary) data at a certain point in time. Behinde the scenes it stores entries using the Factom (bitcoin) blockchain by means of our generic blockchain API. The flow is generally as follows: 1. Make sure a Proof chain has been created using the /chain POST endpoint beforehand. Normally you only need one or a handful of chains, during the entiry lifetime of your proof solution. This is a relative expensive operation in terms of money. 2. Store proof entries on the proof chain from step 1. The entries will contain the content and metadata you want to store forever on the specified chain. 3. Retrieve an existing entry from the chain to verify or retrieve data Interactive testing: A web based test console is available in the <a href="https://store.sphereon.com\">Sphereon API Store This SDK is automatically generated by the Swagger Codegen project:
To publish the library as a npm, please follow the procedure in "Publishing npm packages".
Then install it via:
npm install blockchain_proof --save
If the library is hosted at a git repository, e.g. https://github.com/GIT_USER_ID/GIT_REPO_ID then install it via:
npm install GIT_USER_ID/GIT_REPO_ID --save
The library also works in the browser environment via npm and browserify. After following
the above steps with Node.js and installing browserify with npm install -g browserify
,
perform the following (assuming main.js is your entry file):
browserify main.js > bundle.js
Then include bundle.js in the HTML pages.
Please follow the installation instruction and execute the following JS code:
var BlockchainProof = require('blockchain_proof');
var defaultClient = BlockchainProof.ApiClient.instance;
// Configure OAuth2 access token for authorization: oauth2schema
var oauth2schema = defaultClient.authentications['oauth2schema'];
oauth2schema.accessToken = "YOUR ACCESS TOKEN"
var api = new BlockchainProof.ProofOfExistenceApi()
var request = new BlockchainProof.CreateChainRequest(); // {CreateChainRequest} Create a new Proof of Existence chain using the provided existence settings
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
api.createChain(request, callback);
All URIs are relative to https://gw.api.cloud.sphereon.com/
Class | Method | HTTP request | Description |
---|---|---|---|
BlockchainProof.ProofOfExistenceApi | createChain | POST /blockchain/proof/0.1.0/existence | Create a new existence chain |
BlockchainProof.ProofOfExistenceApi | registerContent | POST /blockchain/proof/0.1.0/existence/{chainId} | Register content |
BlockchainProof.ProofOfExistenceApi | registerStream | POST /blockchain/proof/0.1.0/existence/{chainId}/stream | Register content using a bytestream/file |
BlockchainProof.ProofOfExistenceApi | verifyContent | GET /blockchain/proof/0.1.0/existence/{chainId} | Verify content |
BlockchainProof.ProofOfExistenceApi | verifyContentByHash | GET /blockchain/proof/0.1.0/existence/{chainId}/{hash} | Verify content by hash |
BlockchainProof.ProofOfExistenceApi | verifyStream | GET /blockchain/proof/0.1.0/existence/{chainId}/stream | Verify content using a bytestream/file |
FAQs
bThe_Blockchain_Proof_API_is_an_easy_to_prove_existence_of__binary_data_at_a_certain_point_in_time__Behinde_the_scenes_it_stores_entries_using_the_Factom__bitcoin_blockchain_by_means_of_our_generic_blockchain_API_bThe_flow_is_generally_as_follows1__Make_s
The npm package blockchain_proof receives a total of 0 weekly downloads. As such, blockchain_proof popularity was classified as not popular.
We found that blockchain_proof demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.