Questions tagged [blockcypher]

A block cipher is a symmetric encryption algorithm that encrypts arbitrary length input stream of plain text, by subdividing it into fixed size blocks and using an encryption key to produce output blocks of ciphertext.

What is it?

A block cipher is a symmetric encryption algorithm that encrypts arbitrary length input stream of plain text, by subdividing it into fixed size blocks and using an encryption key to produce output blocks of ciphertext.

How does it work?

Symmetric encryption algorithm are subdivided in block ciphers and stream ciphers. Block ciphers encrypt fixed blocks of plaintext bits. Stream ciphers encrypt each plain text digit one by one.

As a block cipher works block by block, it cannot produce a real-time stream and either works off-line or works by caching data, so that there is some lags when blocks can only be completed with delays.

See also

20 questions
0
votes
1 answer

Why does Blockcypher signer tool return some extra characters than bip32 dart package?

I'm trying to sign a transaction skeleton Blockcypher returns, in order to send it along, following https://www.blockcypher.com/dev/bitcoin/#creating-transactions. For this example, I'll use the completely-unsafe 'raw raw raw raw raw raw raw raw raw…
Bruno Calmels
  • 58
  • 1
  • 6
0
votes
0 answers

Blockcypher transaction signing error using bitcoinjs

Im trying to sign a Bitcoin testnet transaction using blockcypher and the bitcoinjs lib described here, but I have run into this error and I am not usre what I am doing wrong. {"error": "Couldn't deserialize request: invalid character 'x' in…
brandbei37
  • 501
  • 3
  • 13
0
votes
1 answer

Error Validating Transaction. Sum of inputs lesser than outputs. Bitcore

When a user registers on my web app, a HD wallet is generated and a webhook is instantiated on the blockcypher API to listen to unconfirmed and single confirmation transactions. When an unconfirmed transaction is detected, and event is emitted to a…
Lorza
  • 459
  • 8
  • 23
0
votes
1 answer

Error validating generated transaction. BlockCypher

Im using the blockcypher api from here https://github.com/blockcypher/java-client And got an exception while trying send transaction: IntermediaryTransaction transaction = context.getTransactionService(). newTransaction( …
sedni
  • 65
  • 1
  • 6
-1
votes
1 answer

Does bitcoin-js have a method to check unspent transaction status?

How does BlockCypher explorer get data about spent or unspent transaction status? Does bitcoin-js library have some methods for it?
Yegor
  • 3,652
  • 4
  • 22
  • 44
1
2