Pages

27 May, 2013

BitMessage: A Model For A New Web 2.0?


Over the past twenty years, the democratization of cryptographic technology has brought us the potential for an unprecedented level of privacy, giving the common man the ability to browse documents, have conversations, and now, with Bitcoin, send money to people around the world without even the most powerful corporations and government agencies being able to get in the way, but actual adoption of these technologies has been slow. It was once thought that PGP, the encryption tool created by Phil Zimmermann in 1991, was undoubtedly going to become standard in all email communications within years, but it is now 2012, and most email communication is still done in the clear, with providers like Gmail having the ability to read everything that their users write.
Some argue that the reason why encryption has not been implemented into email protocols is profit, as Google would have no way to earn advertising revenue from their service if they could not scan users’ emails for keywords, and others cite general apathy, quoting Mark Zuckerberg’s famous comment that privacy is no longer a “social norm”, but there is also a more fundamental issue at play: network effects. If you were to create an encrypted email right now with PGP and send it to a friend, they would have a difficult time figuring out what to do with it. For the encryption to be worth anything, your friend would need to have a decryption key under his control, whether that’s a public key or a symmetric key that the two of you had agreed upon earlier, and convincing other people who are not as technologically inclined to use such keys can be a challenge. There are isolated communities in which encryption is used, whether out of ideology or out of necessity – Bitcoin itself has a considerable number of pseudonymous businessmen and developers who rely on PGP to maintain their online identities. However, by and large, this is not the case. If encrypted email was popular enough in the world at large, the average person would have an incentive to set up a public key, but the fact that it is currently a niche technology means that they will not, perpetuating a catch-22 situation which requires a large portion of society to somehow coordinate to escape.
Enter Bitcoin. Although we tend to think of Bitcoin as a system designed specifically to send financial transactions, recent developments have shown that much more can be done with its cryptographic primitives. As early as 2011, people were using the lower digits of Bitcoin transactions as a way of encoding messages in the blockchain; one of the Bitcoinica thieves famously used the mechanism to distribute the message “expect mass leak soon“. Beyond the fact that this message will remain in the blockchain forever, an advantage of this technique is that the message is also authenticated; since sending a message in this way requires you to control the address that the transactions are sent from. If it is already known that you control a given address, then clearly you must have sent the transactions as well.
However, this ad-hoc messaging system is clumsy and inefficient, and the concept of Bitcoin messaging has seen two iterations since then. The first is Blockchain.info’s concept of blockchain notes. The implementation is simple. The sender sends a non-standard transaction with two outputs. One of the outputs sends a very small amount of money to the receiver, while the other does not go to anyone at all. Instead, in the output field of the transaction is the message itself. If interpreted as a script, the message is impossible to fulfill, so that output will simply sit there in the blockchain, never to be spent. However, this approach met with strong opposition from Bitcoin developers for polluting the blockchain. Gavin Andresen wrote :”Yes, please don’t create lots of unspendable scriptPubKeys. There are more prunable ways of embedding messages into transactions. And there are even better ways of associating messages with transactions, so only people involved with the transaction can read the message (if that’s desired). In other words, lets figure out how to do this the right way.” The blockchain note system was soon converted into a proprietary feature of blockchain.info’s wallet.
The other advancement was message signatures. In version 0.6, the Satoshi client added a feature which allows the client to use the same algorithm used in Bitcoin to sign transactions to sign any other message as well. Using the exact same cryptographic techniques that allow miners to verify that the owner of an address authorized a transaction sending money from that address, anyone can verify (using a tool also present in the Satoshi client since version 0.7) that a message signed with a given address was signed by the address’ owner. Electrum and brainwallet.org also support this standard for both signing and verification. This mechanism solves the authentication problem, and it does not pollute the blockchain, but it has a problem of its own: there is no built-in transmission mechanism. Thus, just like PGP, the only way to send a signed message is to create a format (called ASCII armoring in PGP) that combines the message and the signature into a block, and then paste the block all together as a message. Essentially, this creates a PGP clone based on Bitcoin’s elliptic curve cryptography, with all of its advantages and disadvantages.
BitMessage, however, solves both of these issues. Rather than going through Bitcoin’s peer-to-peer network, BitMessage creates a peer-to-peer network of its own with properties specifically designed for sending messages. As the whitepaper describes it, “objects are broadcast throughout a Bitmessage stream. We propose that nodes store all objects for two days and then delete them. Nodes joining the network request a list of objects from their peer and download the objects that they do not have. Thus they will receive all messages bound for them that were broadcast during the last two days.” “Objects” are the basic unit of the network’s operation, and are replicated throughout the network. To limit the creation of objects and avoid spam, making an object requires solving a proof-of-work computation, which takes about four minutes on an average computer – in short, a replica of Adam Back’s HashCash anti-spam scheme first proposed in 1997.
Sending a message is a four-step back-and-forth process. First, the sender creates an object asking for the receiver’s public key. Second, when the receiver receives this object, he creates a reply object sending the key back. Third, the sender creates an object containing the actual message encrypted with the receiver’s public key, and, finally, the receiver receives the object and sends an acknowledgement message. The main message can be much longer than the short text string that can fit inside a series of transactions or an output slot; the whitepaper explicitly mentions that the scheme “would allow an individual or organization to anonymously publish content.” If both the sender and receiver are online, the process can happen within seconds, but otherwise they merely need to be online within a two day timespan of each other four times (really three times, as the acknowledgement is not crucial to sending the message) for the transmission to take place. Once two users are aware of each other’s public keys, the first and second steps do not need to be repeated, making the process even easier. Identities on BitMessage are referred to by addresses like “BM-2nijaB5b1C6HESgdqFMoMzWqNchA9w84Xmv”, which are formed from public keys in a similar way to Bitcoin addresses.
However, although the fundamental ideas behind BitMessage are both innovative and sound, BitMessage as it is is not without its flaws. One blogger wrote a scathing review of BitMessage’s security, pointing out that it made a number of elementary mistakes in implementing its encryption algorithms. First, it uses RSA on the message directly rather than using it to generate a one-time key which is then used to encrypt the message, a basic modification which both drastically increases speed and prevents many attacks based on specifically constructing blocks to exploit the algorithm’s mathematical properties. Second, it independently encrypts each block rather than using an encryption mode like cipher block chaining which makes the contents of the encrypted blocks dependent on each other. This means that an attacker can rearrange the blocks of an encrypted message, which it will appear to the receiver as a valid message, as if the original sender intended for the message’s blocks to come in the attacker’s chosen order. Finally, the encryption algorithm does not include an authentication layer, making other kinds of attacks possible. However, BitMessage developer Jon Warren is aware of these flaws, and is working hard on creating another version of the protocol that fixes these issues.
Another one major flaw that BitMessage arguably has is that it is not compatible with Bitcoin itself. Unlike Bitcoin, which uses elliptic curve cryptography to secure transactions and now messages, BitMessage uses 2048-bit RSA. RSA is in many ways more difficult than ECC to work with. It requires much longer key lengths to achieve the same level of security (eg. 3072-bit RSA is about equivalent to Bitcoin’s 256 bit ECC), and because RSA keys must have a special property to be valid (namely, being a product of two large prime numbers) they take a comparatively long time to generate, and there is no standardized algorithm for generating keypairs deterministically from a seed. But the main advantage of a system compatible with Bitcoin is not even this. Rather, it’s the fact that if a similar system were to be designed that could interoperate with Bitcoin’s private and public keys, it would be able to take advantage of the infrastructure that exists around Bitcoin already. It would be able to use the private and public keys that are already sitting in hundreds of thousands of Bitcoin users’ wallets, and would also be able to skip the public key retrieval step, as public keys can easily be recovered from the blockchain.
Furthermore, it would be possible to merge the message transmission and payment features into one, creating a sort of unified payment and social network service in a decentralized way. If Alice wanted to send 10 BTC to Bob, she would not need to ask Bob to give her an address as she does now; rather, she would be able to simply send money to the address that she already uses to send Bob her private communications. The scheme can easily be augmented to preserve privacy. One interesting property of elliptic curve cryptography is the existence of an operation called point multiplication, which allows a public key to be multiplied by a value to create a new public key, from which Alice can generate another address, and then Bob can multiply his private key by the same constant to get a new private key that corresponds to the public key and address that Alice just created. This is the key insight behind a concept known as the deterministic wallet, already implemented in Electrum, and it can be applied to create one-time keys for messaging and payment as well.
Fortunately, the BitMessage protocol is designed to be upgradeable, and the next version of the protocol may end up both solving the security problems and introducing Bitcoin compatibility by simply switching BitMessage’s cryptography to the same elliptic curve system used by Bitcoin. If BitMessage continues to develop and grow, or even if another, similar technology takes its place, what it can offer is a decentralized, cryptographically secure platform that can form the basis for its users’ entire online lives. One can potentially extend the system to add on a web of trust, a systematic way of declaring friends and business relationships, personal webpages, and it already supports a Twitter-like mechanism of subscribing to individuals and receiving a feed from them. In ten years’ time, there is a chance that Bitcoin will prove to be much more than just a decentralized digital currency; it may be the start of an effort to redevelop much of the internet from scratch – and this time done right.

http://bitcoinmagazine.com/bitmessage-a-model-for-a-new-web-2-0/

New messaging principles - BITMESSAGE


A short description about how Bitmessage works including a few of its features and functions. Bitmessage is a p2p encrypted protocol and messenger client. See the project website for more information. Project Website: https://bitmessage.org My Website: www.Addictronics.com

16 May, 2013

Anonymous It's time to Unite


Greetings citizens of the world, the following is a very special message for all of humanity. Too long have we lived in fear, fear of greed, fear of corruption, fear of failure, fear that everything we've known turned out to be wrong. No longer will we live in fear! It ends here and now, with you and me! We are brothers and sisters of humanity, the time has come for us to unite! We must forge a new beginning of peace and love, we must be the good we want to see in the world. Humanity is still young, and for the first time ever in human history we have a real chance at true peace as a species. The internet has united us more than ever before, its time we use this gift to promote the unity of us all. Its time we stand up as a planet and declare we will no longer take part in a system based on fear, greed, corruption, and war. Lets put everything into perspective for those of you that need more convincing, the United Sates alone has spent trillions of dollars on wars. War has claimed the lives of over 264 million people throughout the course of known human history, many of whom where civilians. Human progress has been halted by senseless wars. While we fight amongst ourselves on Earth there's an entire universe passing us by. There are an estimated 160 billion planets in our galaxy alone, many of which could potentially be home to carbon-based life as we know it. Stars go supernova, entire solar systems get destroyed, even whole galaxies collide while we argue and fight over small and pointless issues. We should be happy we have a planet to live on, not fighting over who owns the planet. In truth no individual or even an entire species owns it, because in truth all life on Earth owns this planet. Someday soon humanity will venture to the stars, will we go into the unknown divided and fighting? Or will we say as one voice, as one species, "We the People of Earth, united as one, declare from this day fourth that no force, however big or small, shall ever divide the spirit of humanity again. United in our cause for peace, knowledge, and progress, we go forward into the unknown as brothers and sisters, as a species no longer divided by war, greed, corruption, and fear." The choice is yours to make, you are Anonymous, you are the future of Earth. You can either continue the wars and division of humanity, or you can try something new. You can give peace a chance, you can help secure a beautiful world of peace, knowledge, and progress for all generations to come. You are Anonymous, You are part of Humanity, You should Forgive, yet You should never Forget, It's time to Expect Yourself... With your help, may one day the innocent never suffer and the brave never die, for on that day we'll truly be free. United as one, divided by zero. This channel will be constantly uploading Anonymous related news. Go ahead and subscribe to keep up to date in the Anon world.

iEvade


Apple just released another groundbreaking new product that is already changing the world. See what their gigantic bond offering is really all about. Stay up-to-date with the latest animation! http://tinyurl.com/fiore-update

13 May, 2013

- NEDĒĻA@STARTUPS - J.ROZENBLATS, A.BERNOVSKIS, MAILIGEN.COM, Co-Founders


- NEDĒĻA@STARTUPS - J.ROZENBLATS, A.BERNOVSKIS, MAILIGEN.COM, Co-Founders from NEDĒĻA@ on Vimeo.

EPIZODE NR.6. Raidījuma NEDĒĻA@STARTUPS viesi - JĀNIS ROZENBLATS un ARTŪTRS BERNOVSKIS, kompānijas MAILIGEN.COM līdzdibinātaji dalās ar savu veiksmes stāstu veidojot globālu IT projektu. MAILIGEN.COM ir globāla mēroga uzņēmums, kurš saviem klientiem piedāvā epasta mārketinga platformu un integrētos mārketinga risinājumus. NEDĒĻA@STARTUPS raidījuma vadītājs un moderators GINTS DZELME sarunā ar uzņēmuma MAILIGEN.COM līdzdibinātājiem runā par to, kas nepieciešams, lai ideju pārvērstu par reālu pakalpojumu. Noskaidrojam, kā un kas nepieciešams, lai piesasitītu investoru savam projektam. Par NEDĒĻA@: NEDĒĻA@ ir interneta televīzijas kanāls. Kanāla moderators Gints Dzelme kopā ar ekspertiem un uzaicinātajiem viesiem piedāvā jums vairāk uzzināt un iepazīties ar interesantām Latvijas, Eiropas un Pasaules www kompānijām, kuras savu uzņēmējdarbību veido internetā. Piedāvājam jums no iekšpuses uzzināt un iepazīties ar notiekošo interneta tehnoloģiju nozarē. NEDĒĻA@ interneta televīzijas kanāla un mūsu veidoto raidījumu mērķis ir būt par pakāpienu vai platformu, ar kuras palīdzību jauni interneta uzņēmumi, projekti un idejas var pastāstīt par sevi un paziņot par savu esamību plašajai pasaulei. NEDĒĻA@ aicina atsaukties un peteikties startapus vai uzņēmumus, kuri ir izveidojuši jaunus produktus un kuri vēlas par tiem pastāstīt citiem. Saviem skatītājiem interneta televīzijas kanāls NEDĒĻA@ vēlās būs par avotu jaunām iedvesmām un idejām. Tādēļ arī savius skatītājus aicinam dalīties ar saviem iespaidiem par ieraudzīto un uzzināto. Vēlaties pierādīt sevi biznesā? Jums ir nepieciešama stratēģija? Jūs vēlaties papildus motivāciju sev un savai komandai? Vai vienkārši vēlaties būt informēts par notiekošo nozarē? NEDĒĻA@ ir jūsu rīcībā! Lai nevienu nemulsinātu un nerastos pārpratumi, tad vēlamies informēt, ka aicināto viesu dalība mūsu raidījumos ir BEZ MAKSAS. Protams, ka novērtēsim, ja atbalstīsiet finansiāli mūsu web televīzijas kanālu, par ko pateiksimies izvietojot jūsu reklāmu web televīzijas kanāla NEDĒĻA@ raidījumos. Par reklāmas izvietošanu un raidījumu finansiālo atbalstu lūdzam zvanīt: +371 29425870, +371 26536548 vai rakstīt gints.dzelme[at]createris.com Abonējiet NEDĒĻA@ raidījumus un sekojiet jaunumiem - nedelaat.com/?p=581

Culture in Decline | Episode #5 "Baby Go Boom!" by Peter Joseph


Culture in Decline | Episode #5 "Baby Go Boom!" by Peter Joseph - May 1st 2013 Subtitle Project: http://dotsub.com/view/0837813d-5220-... In this installment of Peter Joseph's public access parody,the subject of Security and True Safety will be investigated. The evil terrorists are revealed to be at it again with a new airline scare; our Guy In A Tie reminds us of who is in control and a special award show finds a very special recipient in the Gun Control Debate.. Special guest appearances by Chad Fisher (Alex Jones) & Rick Overton. www.chadfishercomedy.com www.rickoverton.net Please Subscribe to this Channel for future Episodes: http://www.youtube.com/user/CultureIn... About: "Culture in Decline" is a satirical yet serious expression that challenges various cultural phenomena existing today which most of society seems to take for granted. Nothing is considered sacred in this Series except for a detached benchmark of fundamental logic and reason - forcing the viewer to step out of the box of "Normality" and to consider our societal practices without traditional baggage and biases. Common themes include Politics, Economics, Education, Security, Religion, Vanity, Governance, Media, Labor, Technology and other issues centric to our daily lives.

11 May, 2013

Anonymous - Message to The Zeitgeist Movement and The Venus Project


Who is Peter Joseph?


Who is Peter Joseph? from charles robinson on Vimeo.

Who is Peter Joseph? A Mini-Doc by Charles Robinson. In late 2009 I was able to interview Peter Joseph, the creator of "Zeitgeist, The Movie" and "Zeitgeist- Addendum"; Founder of The Zeitgeist Movement, in his home. He described himself and his life in details in what is likely a rare interview. He was kind enough to provide me with previously unreleased media and video and I in turn did my best to create a documentary (albeit kinda poor in quality compared to his work!) that would help express who this person is. whoispeterjoseph.com

10 May, 2013

The Zeitgeist Movement | The Venus Project | Ron Paul RAP NEWS Satire! Hilarious!


http://thejuicemedia.com RapNews: episode 9. 2011 hits harder than a pre-apocalyptic hangover as "the economy" threatens to annihilate our stock-piles of imaginary, inflated wealth, spawning a battle of epic proportions as insurgent grassroots forces move in to #OccupywallStreet and coalitions of indignados hold their ground in Athens, Madrid and Tel Aviv, facing riotgear, batons and tazers which seek to prevent a more equal redistribution of the proverbial pie. ...But enough action and excitement! It's time for some heroic armchair philosophy: Join your affable host, Robert Foster, as he attempts to shine some light on this mysterious creature, "the economy". Is this the failure of capitalism that we are witnessing, or its triumph? Is it the end of the end of history, or yet another crazy chapter in the whimsical journey of the human experiment? For the occasion, we've pulled out the big guns: admittedly it was a tough choice deciding who to interview: we could've had Alan Greenspan on the show, or the Emperor himself, Milton Friedman; the first lady, Christine Lagarde; or financial buffs like Gerald Celente, Peter Schiff and Donald Trump. But to get the freshest juice we knew we had to go further - much further. Rap News 9 features two VIP Internet grandees who have uploaded gigabytes of truth via the one remaning free frequency - the internet - to feed a discerning and ravenous audience, hungry for answers: US Congressman, Ron Paul, and Zeitgeist film-maker, Peter Joseph. Whilst these two fine folk agree with each other on many things, fortunately, there's no shortage of issues to rap-battle about: Do we need to inject more paper into the financial furnace, or do we need a different fuel entirely - more gold and less lead? Some say we should ditch the entire engine and replace it with something entirely new - but with what exactly? Is the answer to our impeding economic demise contained in shiny new cybernated inventions, or might it actually require us to remember and look back to tried and tested models of economic organisation? Well, time's short so let the rhyme-rodeo begin as we blast off on a rollercoaster odyssey. It's the stupid Economy, in all its gory glory.

Culture in Decline | Episode #4 "War On Nature" by Peter Joseph


In this episode, Peter investigates the nature of War and human conflict; the White House declares War On Nature itself; a french chef prepares an international delicacy for the kids; Louie the Logic Gremlin returns to piss everyone off and our Man on the Street gets rowdy. Special guest appearances by Stephane Chivot, Katie Goodman & Rick Overton. VIEWER DISCRETION ADVISED: You will see Peter Joseph's Alter-Ego's nipples. Please Subscribe to this Channel for future Episodes: http://www.youtube.com/user/CultureIn... About: "Culture in Decline" is a satirical yet serious expression that challenges various cultural phenomena existing today which most of society seems to take for granted. Nothing is considered sacred in this Series except for a detached benchmark of fundamental logic and reason - forcing the viewer to step out of the box of "Normality" and to consider our societal practices without traditional baggage and biases. Common themes include Politics, Economics, Education, Security, Religion, Vanity, Governance, Media, Labor, Technology and other issues centric to our daily lives.

02 May, 2013

ZUARGUSS KZ un NEDĒĻA@SOCIETY par radikālu pārmaiņu nepieciešamību sabiedrībā.


- NEDĒĻA@SOCIETY - ZUARGUSS KZ, SKAISTANAKOTNE.LV līdzdibinātājs from NEDĒĻA@ on Vimeo.

"Latvijā nepieciešams experiments, kas radikāli pārmainītu sabiedrībā noteikošo procesu gaitu - no DESTRUKCIJAS uz PROGRESU!". EPIZODE NR.5. Interneta televīzijas kanāls NEDĒĻA@ piedāvā jums raidījumu NEDĒĻA@SOCIETY. Šajā raidījumā mēs runāsim par tēmām, kas saistītas ar indivīdu, sabiedrību, un, protams, interneta lomu šodienas sabiedrībā. Šajā raidījumā NEDĒĻA@SOCIETY raidījuma vadītājs un moderators Gints DZELME un Latvijas sabiedrībā pazīstamais ZUARGUSS KZ runā par pārmaiņu nepieciešamību Latvijas sabiedrībā. Noteikti jāizceļ sarunas daļa, kurā runājam par ZUARGUSA pieredzi sastībā ar Latvijas politiskajiem prosesiem - 4VARA.LV un SKAISTANAKOTNE.LV. Kā nozīmīgs ieguldījums bērnu un jauniešu izglītības rīku izstrādē ir ZUARGUSA komandas instrādātās izglitojošās spēles/aplikācijas - OSMARTGAMES.COM.