Bitcoin Forum
June 21, 2024, 08:41:36 AM *
News: Voting for pizza day contest
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 [130] 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 »
2581  Bitcoin / Bitcoin Discussion / Re: In the eyes of Sam himself, he is so innocent on: December 01, 2022, 03:35:30 AM
Blames may not solve anything, he didn't blame himself for the billions of dollars lost through his exchange, he doesn't perceive it like we do. Think of Two Gun Crowley in Dale Carnegies' book, Despite being a murderer, in his letter he said: ‘Under my coat is a weary heart, but a kind one – one that would do nobody any harm.’ Even Al Capone didn't blame himself for disturbing Chicago. Therefore, SBF, has millions of reasons to prove he's not guilty. And blaming or condemning him won't help as he won't condemn himself. I'd say, until he is tried in the court of law for his carelessness SBF will always tell the world he's a good man who tried to save the cryptocurrency market.
2582  Economy / Gambling discussion / Re: FIFA 2022 world cup on: December 01, 2022, 02:47:44 AM
Argentina couldn't have done more, this game is quite impressive. It saved them a lot of troubles, especially, Messi who lost a penalty kick. What would have been the reaction of fans if Argentina lost their game. I'm glad it's Argentina against Australia instead of France that would've removed a strong team at the round of 16. Its a pity for Mexico, a goal difference is a treasure in soccer, but its not bad to have Australia on the Round of 16. I predict that Argentina will win against Australia and France will beat poland, can't wait to watch France play against Brazil.
2583  Bitcoin / Bitcoin Discussion / Re: Bitcoin's Last Stand on: December 01, 2022, 01:51:37 AM
Quote
In July, the Financial Stability Board (FSB) called for crypto assets and markets to be subject to effective regulation and supervision commensurate with the risks they pose - along the doctrine of "same risk, same regulation".

Steven Maijoor, now, is completely concerned about cryptocurrency regulations across border, noting that it'll be difficult for national bodies to observe the activities of cryptocurrency if its not regulated across border. Meaning that FSB will have to go beyond sectorial boundaries in the coming regulation on crypto and the tightening of Stable coins. I'd say that the problem with cryptocurrency and the regulatory sector is the constant failure of cryptocurrency projects. Because Maijoor, in his speech pointed at the recent incident of FTX and referred it the fall of Bank of Amsterdam 300 years ago, insisting that FSB must learn from the past.

Quote
Large investors also fund lobbyists who push their case with lawmakers and regulators. In the US alone, the number of crypto lobbyists has almost tripled from 115 in 2018 to 320 in 2021. Their names sometimes read like a who's who of US regulators.

I think the author is correct here as this action dulls the consistent effort of the SEC, FSB and the authorities behind the regulation of cryptocurrency. Considering that these sectors can easily regulate cryptocurrency like the traditional finance, it's quite clear that these lobbyists are stretching the process by making it difficult for them to execute their plans. They are hundreds of legitimate news on the internet about the cryptocurrency regulation, yet it seems like nothing is done about it. So if cryptocurrency must stay unregulated, they must be lesser ill activities attached to the market. Because it draws the attention of the authorities.

https://www.coindesk.com/policy/2022/11/17/crypto-will-soon-threaten-global-financial-stability-fsb-official-says/
2584  Other / Beginners & Help / Re: I'm finally saying goodbye to CEX and Centralised projects on: November 30, 2022, 03:40:51 PM
It's quite a good decision but, since you are not in control of the platforms you may face some difficulties in the future regarding changes in the Decentralized project. Always diversify your funds to stay safe.
2585  Other / Off-topic / Implementing Argon2i in PHP on: November 30, 2022, 07:48:04 AM
Happily, the winner of the Password hashing competition argon2 got supported by PHP 7.2 some years back. Programs coded with PHP can attach the codes to argon2i password hashing into their app or program.

With the unreliability of Bcrypt and PBKDF2, Argon2id (with hard memory function) was created to tackle trade-off attacks and side-channel attacks. However, Argon2i PHP code is in this thread, mainly used for password hashing and password-based key derivation, as it uses data-independent memory access.

Argon2 with the use of predefined memory size, CPU time, and a degree of parallelism, protects against brute-force attack and GPU attacks.

Note: Argon2i and Argon2d have different functions, the last named is mainly for cryptocurrency-related projects and back-end servers that don't require side-channel timing attacks. While Argon2id is a combination of both, people who know what they need can go for one with the feature they want.

Argon2 Features

Performance: Argon2 rapidly occupies Memory, thereby, souring the area multiplier in the time area for ASIC equipped adversaries. Though Argon2i data independent version durably fills the memory spending within 2 CPU cycles per bytes, Argon2d is three times as fast.

Trade off Resilience: Regardless of fast performance, Argon2 is designed to deliver a suitable level of Trade of Resilience.

Scalability: Argon2 possesses scalability both in time and memory dimensions.   

Parallelism: Argon2 may utilize up to 2^22 threads in parallel.

GPU/ FPGA/ ASIC Unfriendly: Argon2 is specially optimized for *86 architecture to enable cheaper or faster implementation on dedicated cracking hardware.

Additional Input Support: Argon2 is Additional input compatible, which is syntactically set apart from the message and nonce like, environmental parameter, secret key, user data etc.



Running OF ARGON2i in PHP.

Code:
The implemented algorithm in PHP is Argon2i (v1.3), and it can be provided via the $algo parameter to the password_hash() function. The signature of password_hash() is as follows:

password_hash( string $password , integer $algo [, array $options ]) : string

The second parameter ($algo) specifies the algorithm to use when hashing; the Argon2i algorithm is represented by the constant PASSWORD_ARGON2I.

As an example:

$password = 'test';
$hash = password_hash($password, PASSWORD_ARGON2I);
var_dump($hash);

The $hash result will contains a string of 98 characters as follows:

$argon2i$v=19$m=1024,t=2,p=2$TmxLemFoVnZFaEJuT1NyYg$4j2ZFDn1fVS70ZExmlJ33rXOinafcBXrp6A6grHEPkI

This string contains sub-string of parts, separated by dollar ($). These parts are:

argon2i
v=19
m=1024,t=2,p=2
TmxLemFoVnZFaEJuT1NyYg
4j2ZFDn1fVS70ZExmlJ33rXOinafcBXrp6A6grHEPkI

The first part is the algorithm name (argon2i), the second is the Argon2i version, and the third part is a list of algorithm parameters related to memory cost (in Kb), time cost, and threads to be used (parallelism).

The fourth parameter is the random salt value, encoded in Base64. This value is generated by password_hash() using a random value for each execution. This is why we have different hash outputs for the same input string. The default size of the salt is 16 bytes.

The fifth and last parameter of the string contains the hash value, encoded in Base64. The hash size is 32 bytes.

PHP provides a function named password_get_info($hash) to get information about the hash generated by password_hash(). For instance, if you use password_get_info() on the previous value, you will receive:

array(3) {
  ["algo"]=>
  int(2)
  ["algoName"]=>
  string(7) "argon2i"
  ["options"]=>
  array(3) {
    ["memory_cost"]=>
    int(1024)
    ["time_cost"]=>
    int(2)
    ["threads"]=>
    int(2)
  }
}

The default parameters for the algorithm are a memory_cost of 1024 Kb (1 Mb), a time_cost of 2, and two threads to be used for parallelism. The Argon2 specifications suggest to use a power of 2 value for the memory_cost.

These values can be changed using the $options parameter of the password_hash() function. As an example:

$password = 'test';
$options = [
    'memory_cost' => 1<<17, // 128 Mb
    'time_cost'   => 4,
    'threads'     => 3,
];
$hash = password_hash($password, PASSWORD_ARGON2I, $options);
var_dump($hash);

    PHP will generate an E_WARNING for values that cannot be used as options for the PASSWORD_ARGON2I algorithm.


With the usage of Argon2 attackers won't be able to access users passwords after penetrating a given site.

https://github.com/P-H-C/phc-winner-argon2/blob/master/argon2-specs.pdf

https://medium.com/analytics-vidhya/password-hashing-pbkdf2-scrypt-bcrypt-and-argon2-e25aaf41598e

https://framework.zend.com/blog/2017-08-17-php72-argon2-hash-password.html
2586  Bitcoin / Hardware wallets / Re: Nokia Hardware Wallet? on: November 30, 2022, 12:35:18 AM
It doesn't, but you know how it goes. You try something with pocket change and it works. So the next time you do it with more money and it works nicely again. Maybe you tell a few friends about it and they try it out as well. Someone puts more money then they are supposed to on a wallet like that, a mistake happens, and bam the money is gone. After a deeper inspection by security experts, we find out the concept was flawed from the beginning and full of holes. I am not saying that's the case here, of course.  
I perfectly get what you mean.  I think I even said this a while ago over here.  It is all fun and games until the project actually becomes more popular than we wish and then it could end up as a big problem.  It is fun experimenting, but many do not get it and will turn it into something stupid.

There is one use case I am thinking of right now.  Traveling.  Nobody would steal an old Nokia phone, unless you are maybe in a third world country.  

-
Regards,
PrivacyG

Its a fresh innovation, just like you pointed that it's nobody's desire to steal old Nokia phones. Similarly, attackers don't care about old Nokia phones now, til the whole formula gets famous, and old phones starts getting demands again in the market because they can be used for hardware wallets.

Additionally, these phones have got internet access and bluetooth which is not a nice criterion for a hardware wallet, though no one still utilizes such phones to an extent of downloading games with viruses, But never can we tell, they are different people who would jump on the DIY old phones hardware wallet if it gets popular, and attackers can easily build malwares targeting Java phones. No one would understand it was built for fun when things go wrong.
2587  Other / Beginners & Help / Re: Having the knowledge of the ABCD in bitcointalk forum. on: November 29, 2022, 11:36:22 PM
A. Activities count are determined by time only

B. Beginners and help is the best board for newbies

C. Campaigns are for quality posters

D. Don't be desperate to earn, it could lead to spamming

F. Frown at bounties like a person that ate a a spoonful of wasabi

G. Grow your account gradually

H. Hunt intuitive information

I.   Investigate a service before making payments

J.  Join your local board

K.  Know your audience

L.  Love the process

M. Make use of your sMerit
2588  Bitcoin / Bitcoin Discussion / Re: Bitcoin,the bedrock of investors. on: November 29, 2022, 06:41:49 PM
Investing right in bitcoin relies on picking the best time to invest. Those who bought during the early days of bitcoin not all of them banked money with bitcoin. While some OGs didn't sell, some sold earlier when the price move was a bit enticing to them. That doesn't mean investing in bitcoin now won't change investors lives. Hitherto, this is the right moment to purchase bitcoin and hold for the bull run. Investors who don't know the right time to buy will wait till its bullish before investing again into bitcoin which is why some profit and the other lose woefully
2589  Economy / Gambling discussion / Re: Candidates for the WORLD CUP 2022 Winner on: November 29, 2022, 06:10:29 PM
The list above contains strong teams which makes it difficult to choose a winner. However, Brazil and England tend to have a better chances of wining the game. Brazil won on two outings while England draw to the USA is not favouring to the English team.  Argentina on the other hand could win the tournament but losing to Saudi Arabia is not encouraging, yet its not a complete defeat they'll bounce back. looking at Neymar on injury, which may derail strategies for the Brazilian team, though Neymar will heal soon,  he may not play superbly as he did before he sustained the injury. I'd say that England is at a better chances of wining the world cup though Brazil is doing perfectly well in this tournament. Let's keep watching.
2590  Other / Beginners & Help / Re: Is there best way to seek people's attention on bitcoin? on: November 29, 2022, 05:46:49 PM
Bitcoin, OP, is a technology you should learn first before witnessing to people about it. When that is done, they're multiple means of reaching out to people about bitcoin. People want to understand better what bitcoin is about. And its not hard to get their attention.

First, you can walk up to some people in a long ATM queue waiting to withdraw cash, transfer, or make payments; these are people who are frustrated by the banking system, talk to them about a sweet alternative which is bitcoin. Since they're in a queue they'd have no other option than to listen. You'd be surprised to see more ears listening to your conversation.

Second, talk to friends about your new discovery, bitcoin, how it works and its importance to the future of money in our society. You can as well take things to social media and create some awareness there. The benefit of this is that the more you share your knowledge the more it increases. Don't stop at what you think should be done.

2591  Bitcoin / Bitcoin Discussion / Re: Bitcoin Journey Began 40 Years Ago; is this the end? on: November 28, 2022, 07:57:52 PM
Vividly, I could remember a story of how people lost lots of money on liberty reserve when it got closed. People had no other option than to switch to bitcoin when it was released and bitcoin seemed safer. That's how innovation works, Satoshi had an idea that will replace liberty reserve, a big competitor to bitcoin, but he didn't relent. Unlike liberty reserve bitcoin cannot shutdown, but a bitcoin exchange can, I'd say that liberty reserve functioned like the cryptocurrency exchange. Because I wasn't there to witness how it worked. More like a centralized payment method in a decentralized form where users online need a recipients key to send them money. These digital cash keeps evolving and cryptocurrency, indeed, looks like the endpoint.
2592  Bitcoin / Development & Technical Discussion / Re: Simplicity - A new advanced programming Language for Bitcoin on: November 28, 2022, 07:40:52 PM
Simplicity has numerous potentials, one is the ability to implement vaults on the blockchain, which allows for a devaulting withdrawal interval before a coin gets to its destination, within this period a user can decide to cancel or approve a transaction. This will help reduce the fear of losing private keys to an attacker. As it'll buy enough time for the user to move funds to another wallet, or terminate any transaction altered by the attacker.

Quote
I think speculation about simplicity in bitcoin is extremely premature

With the use of “Jet" simplicity will be easily implemented into real life and won't be speculation anymore, and if multiple of them gets implemented, jets can run a simplicity program without the blockchain, but in rare cases, as the blockchain can't easily get out ruled. In addition, the Jets can reduce the bitcoin script size to smaller bytes.

Quote
Earlier this year, by extending the C implementation to support jets, and implementing key functionality with a modified version of the high-performance libsecp256k1 library, we were able to recreate the previous release’s test transaction, but now with a greatly reduced program size of 448 bytes, down from 14,635 bytes! For reference, a standard Bitcoin script of similar functionality is 107 bytes. There are still plenty more jets to implement, which will further reduce script sizes, but these numbers and the surprising compactness of Simplicity script object code, shows that Simplicity is practical and usable in a blockchain context.

Roconnor-blockstream on a GitHub discussion when a question was raised about this PR also added that simplicity will help make the bitcoin script low in size thereby making it concise.

Quote
Additionally we should note that Simplicity is implemented as a new Tapleaf version and different Tapleaf versions can be mixed inside a Taproot. This allows one address to contain a (disjunctive) mixture of Simplicity and Script. I think Script will end up being slightly more concise and hence lower weight to use for policies that it is capable of expressing, so it is likely sensible to mix them together.

However, the project is still in progress, but the proposal has good qualities that'll reshape the bitcoin script and add other features that could make the blockchain simple and user-friendly.

https://medium.com/blockstream/simplicity-jets-release-803db10fd589
2593  Economy / Gambling discussion / Re: Your Favorite Casino Games with a Buy-In feature on: November 28, 2022, 08:46:03 AM
Bonus buying is interesting when playing Money Train 2 from Relax Gaming, but the interest diminishes along with the losing outcome. If I stake 100× my bet about $150 to unlock the money cart bonus, and end up wining $30 I'll lose interest because I just lost $120 in a bit. However, the wining can be encouraging, which depends on discipline and bank roll. Out of curiosity a player can waste more money with feature buying than playing gradually. Some games offer bonuses after spinning more than 10× it all requires patience. Though, if your bank roll can withstand the loses then its not a problem.
2594  Bitcoin / Bitcoin Discussion / Re: Each interaction with the blockchain network review information about you on: November 27, 2022, 10:14:12 PM
Every cryptocurrency user should be a researcher, funny how a lot of people think that cryptocurrency is anonymous and untraceable, and comfortably use it for illicit business or scam actions. Without reading about cryptocurrency who will teach them the right method to remain anonymous. Hence, also, I've been pondering what happens to the millions of Kyc documents if an exchange gets hacked for instance the FTX hackers, did they get away with people's crucial document?

Moreover, the mixer, even, FBI have got tools to trace mixed cryptocurrency. The right thing to say is, that crypto market have lots of careless investors both the retail investors too.
2595  Economy / Trading Discussion / Re: Importance of limit order in crypto on: November 27, 2022, 09:40:14 PM
Unlike instant buy, limit order is like a watchdog that observes the market price for a trader and executes an order when the price of a coin gets to the limit prepared by the trader.

However, your post on limit order is quite unarranged, try to read other posts in the forum and structure yours like that. Always have space between paragraphs to improve readability. Preview your contents before posting them, it'll help you rethink on a suitable structure for your writing.

Lastly, I think the trading board is cool for this post.
2596  Bitcoin / Bitcoin Discussion / Re: El Salvador Establishes New National Bitcoin Office on: November 27, 2022, 03:13:25 PM
Bukele is left with 6-7 years to rule El Savaldo if he wins the 2024 election. Purchasing 1 bitcoin everyday for 6 years is estimated at a total of 2190 BTC added to the 2380 BTC they've got in stock. As I was reading the article, something crossed my mind, if the next president of El Salvador happens to be interested in Agriculture other than digital currency he would move the accumulated Bitcoin into that sector. Thereby, shattering Bukele's dreams, unless the next Government continue buying 1 BTC when Bukele completes his tenor, El Savador won't achieve alot with Bitcoin.
2597  Other / Beginners & Help / Re: Not all crypto meetings are good on: November 26, 2022, 11:01:52 PM
Indeed cryptocurrency meetings that's only focused on trading on a specific exchanges is quite incomplete. I prefer watching developer's conferences where varieties of blockchain project teams, each, come to teach people how they operate, and their long term aim. The trading niche is speculative and uncertain. People must stay watchful regarding trading especially newbies. The meeting you attended was a sponsored meeting by FTX more like an advertisement for the exchange. And many fell prey to this marketing strategy because no one could predict correctly what's next in the market.

When venturing into the cryptocurrency market one must expect the unexpected; at first nobody could predict this FTX bankcrupcy, Luna crash and other hassles that affects investors and traders. Its our duty to stay updated and abide by the rules, do your own research and own your keys. Like you said; people relax with the impression that exchanges are under a serious regulation. Thereby, trusting their funds on the hands of these exchanges. In a nutshell, those who don't research always fall victim to the disputes of this ever volatile cryptocurrency market.
2598  Economy / Service Discussion / Re: Three US lawmakers' reactions amidst FTX collapse on: November 26, 2022, 10:25:18 PM
It's funny how they are trying to make it seem like their primary interest is the safety of US investors when in fact the goal is to tighten the grip and to have greater control of the crypto economy. More regulation means more taxing and new ways to identify crypto users. They don't see the fall of FTX as a sad event that caused harm and financial loss to US citizens, they are angry that because of the bankruptcy there will be a shortage of tax money coming from crypto.  

The US Government is mostly triggered by that which profits them, it'll take nothing to regulate these exchanges, but the funds gotten from these exchanges used for election activities dulls the impression and at the end everyone lost the race; the bankruptcy affected the Government in different manners. Now, they've got to blame the SEC for not taking action like the SEC is uncontrollable. I don't trust these law makers, the concepts of executing or passing bills is controlled by unknown inner players within their circle. Whatever is revealed to the entire public is more or less a lie. Because they should have questioned the SEC, when congress man Davidson discovered that the SEC regularly meets up with FTX. These law makers are more interested on the funds than regulating cryptocurrency.
2599  Economy / Gambling discussion / Re: [Boxing]: Caleb Plant vs David Benavidez on: November 26, 2022, 10:00:18 PM
The both boxers have been embarking on verbal fists for quite a long time, now its time for the fight to commence. Next year will be a better beginning for whoever wins this fight. Benavidez known for his trash talks already said he'll beat the hell out of Plant.
Quote
“This fight for me is 100% personal with Caleb Plant,” said Benavidez during an interview with BoxingScene.com. “I’m really looking to go in there and beat the shit out of him.”

On the other hand, Plant needs to get back to his position after losing his title to Canelo, I think a win for him will be of good advantage to his career added to his previous win against Direll, which Benavidez commended, yet Benavidez is not bothered in the least about Plant's win over Direll as he's waiting for the D' day that he'll land numerous KO on Plant.

Quote
“My plan is go in there and do what I know I can do to Caleb Plant and that’s gonna be put a beating on him worse than Canelo.”

https://www.boxingscene.com/david-benavidez-this-fight-100-personal-with-plant-gonna-put-beating-on-him-worse-canelo--170689
2600  Other / Beginners & Help / Re: Consistency is the way out. on: November 26, 2022, 08:55:54 PM
Working under pressure is often seen on people's CV and I wonder why they'd prefer to work fine under pressure. Some people tend to pressure themselves to be able to meet up with their specific goals especially when they've got no boss to pressurize them like in this forum. While others don't like being under pressure in any way, they're people who work with a deadline to gain positive results. There's a saying "that given a enough time nothing is achieved". Those who set a deadline to hit a specific rank in the forum, learn a specific knowledge and pass a certain information, are already under self pressure. I don't think consistency takes out pressure, only the subconscious removes pressure most especially self imposed pressure. Therefore, unless the said member hits his goals within the expected time frame he will have no rest. On the whole, consistency helps in any field, but rarely cures pressure because working under a deadline requires congruous pressure.  
Pages: « 1 ... 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 [130] 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!