Friday, January 24, 2020

Government: Less is More Essay -- Argumentative Persuasive Topics

Government: Less is More      Ã‚  Ã‚  Ã‚   Land of liberty, land of freedom, a land by, for, and of the people. Have you honestly ever affected one word the government has spoken? Do you do anything in daily life without the subtle involvement of Uncle Sam? Everything you see and use is government approved, or else it is illegal to use it.    There are many groups adamantly protesting, or rather complaining, about the amount of control the government has. I am not of the belief that the government is out to get us and we should buy as many weapons as possible to fight them off. I also don't believe we should not obey laws because we are not happy with them. I do feel, however, we need to become aware of the problems we face because of this excessive control. Let's look at some of these problems.    First of all, our government knows more about us than we know about ourselves. They have access to virtually any information they could ever want. There is no apparent harm in this, but why is it necessary? And if it is, maybe we should change our programs so it's not. There is a potential, a highly unlikely one I will admit, for our government to take advantage of that information to our detriment. Why take the chance?    Most of the areas our government has too much control over involve money. For example, the welfare system in our "free enterprise" society is simply the government taking our money, whether we want to give it or not, not to mention how much of it they want, and distributing it as they feel best. I can understand the need for welfare during the depression. It was a plan of action for a time of crisis, and it worked. We have been out of that crisis for seventy years. I think it's time to change. Our curr... ...y, yes. Respectfully, of course. Nonviolently, absolutely. But when told how to think or how to behave we don't. We disobey social protocol that stifles and stigmatizes personal freedom. I learned the awesome power of disobedience from...every great man who led those with right against those with might." (Heston) Works Cited    Belz, Joel. "Wrong Without a Remedy." World. Nov. 20-27, 1999 Center on Budget and Policy Priorities. "Major Provisions of the Welfare to Work Legislation." CBPP Web Page. Cbpp.org/609wtw.htm, URL#325298, 6-9-98. De La Rocha, Zach. "Snack Charmer." Evil Empire. Sony Entertainment 1996. Heston, Charlton. "Winning the Cultural War." Speech given to Harvard Law School Foru. Feb, 16, 1999 Orwell, George. 1984. New York, NY: Harcourt Brace Jovanovich, 1983 Thomas, Cal. "Outlaws and Their Guns." World. Nov. 20-27, 1999.

Thursday, January 16, 2020

Contemporary Symmetric Ciphers

Jordan University of Science and Technology Computer Engineering Department Cryptography & Network Security CPE (541) HW#5 Contemporary Symmetric Ciphers (Double-DES, Triple-DES & Blowfish) Supervised by: Dr Loai Tawalbeh Eng. Sulaiman Al-Basheer Simsam R. Hijjawi 20022171043 Review Problems: 6. 1 What is the triple encryption? It is a three-stages encryption with three different keys, to avoid costly requirements arises from using three different keys with total length of 3Ãâ€"56 = 186 bits a triple encryption with two keys maybe used. 6. 2 What is the meet in the middle attack?It's that attack doesn't depend on any particular property of the DES, instead, it will work against any type of block ciphers. For the double-DES cipher & a given (P,C) pair, this attack works as follow: 1. Encrypt the plaintext P with all possibilities of K1, store the results in a table, & sort that table by the value of X. 2. Decrypt C with all possible values of K2, check each resulted value with the en tries in the table, in case of match, check these two keys against another known pair (P1,C1), if match, accept them as the correct keys. 6. Why is the middle portion of 3DES is a decryption rather than an encryption ? 1. It's a decryption process in order to change the traditional nature of the DES, if it's an encryption, it'll stay a DES but with longer key size. 2. In the cryptography, there is no significance of using the decryption in the middle stage, the only advantage of doing so is to allow users of 3DES to decrypt data encrypted by the users of the older single DES ( C = Ek1[Dk2[Ek1[P]]] = Ek1[P]. Suppose that the middle portion is decryption instead of encryption, ( C = Ek1[Ek2[Ek1[P]]]The previous assumption in equation 1 will not be ever met. On the other hand 3. If an encryption process is done instead of decryption the meet-in-the-middle attack becomes possible. 6. 6 What primitive operations are used in Blowfish? †¢ Addition: Addition the words, it is performed modulo 2^32. †¢ Bitwise exclusive-OR. Problems: 6. 1 For the two design approaches introduced in the textbook, which is the preferred in the followings: Note: the suggested block cipher in my considerations below is DES. security. The single loop compact approach â€Å"single CBC loop† is more secure, this is because the EDE block contains the encryption function C = E k1[D k2[Ek1[P]]] without simplifications, this makes the cryptanalysis like differential attack more difficult than doing it on a simple loop with encryption or decryption process because each loop in the second approach appears like a simple DES that may be attacked alone in a chosen plain-text attack i. e. differential attack. – performance.The second 3 simple approach is the preferred from the performance wise point of view, this is because each block in each loop contains either encryption or decryption processes so it is faster than the first approach. But as I mentioned above, it is more vulne rable to cryptanalysis than the first approach because each loop is a single DES with differential attack possibility. We can also distinguish between the two approaches based on error propagation. 6. 2 Can you suggest security improvements to either option, using three DES chips & some number of XOR functions? Assume you are still limited to two keys.Changing the mode sounds a good solution: 1. For the first approach that contain only a single independent loop, using Counter mode seems to be simpler, because we deal with counters that less longer than plain texts & have no linear or statistical relationship, this may increase the performance of the 3DES in this case. 2. For the second approach, the dependency between stages prevents using the counter mode as an enhancement, a more secure mode is required in this case, using the CFB may eliminate the possibility of differential cryptanalysis because chosen plain text attack is not worth. . 4 Demonstrate that the blowfish decryption is the inverse of the blowfish encryption. Taking in consideration the following: The decryption process is applied in the same direction as the encryption but with reverse order use of the sub keys. Encryption: 1. Assume the following plain text P with E-PL0 & E-PR0 portions. 2. After the ith round, the output of that round will be E-PRi = E-PLi Xor Pi †¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦ (1) E-PLi = F [E-PRi] Xor E-PRi-1 †¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦ (2) 3. The cipher text will be: E-PR17 = E-PL16 Xor P18 E-PL17 = E-PR16 Xor P17 C = E-PR17 + E-PL17†³+ sign is a concatenation†It will be the input of the decryption algorithm which is the same as the encryption algorithm but with reverse order key fashion. Decryption: 1. Assume the following cipher text C with D-CL0 & D-CR0 portions. 2. After the ith round, the output of that round will be D-CRi = D-CLi Xor P19-I †¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦. (3) D-CLi = F [D-CRi] Xor D-CRi-1 †¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦. (4) 3. the outputs of equation # 1 & equation # 3 and equation # 2 & equation # 4 are the same for each round, this implies the reversibility in the blowfish algorithm between the encryption & the decryption algorithms.

Tuesday, January 7, 2020

The New Geopolitics Of Energy Essay - 710 Words

Carlos Pascual, The New Geopolitics of Energy, Center on Global Energy Policy, Columbia University, September 2015, 37 pp. Article Synopsis: â€Å"The new Geopolitics of Energy† is an overall synopsis of how energy is linked to geopolitics, and how the United States has emerged over the past decade as a major hydrocarbon producer and exporter, which has resulted in the changing the nations posture globally. Of note, Pascual highlights the point that the U.S. has found a new borne power that it can wield geopolitically, and can even further its international objectives. However, it must wield that control very carefully and with finesse, because if done poorly could have far reaching ramifications. Managing this power will not be easy and may take some formidable resources, and the U.S. is not well versed in the unique way that OPEC and the major oil producing nations conduct business. He stresses that energy markets and foreign policy are not static and that the U.S. has to fully understand the intricacies of both. The article is broken into three sections. Part one of the paper addresses the fundamentally new foundations for global oil and gas supplies that stem from the unconventional energy revolution in the United States. This was accomplished by employing new technologies that combine horizontal drilling with hydraulic fracturing, also known as â€Å"fracking† to release oil and gas from the layers of shale and new cost reducing technologies. This increased oil production inShow MoreRelatedGlobalization and Geopolitics Energy934 Words   |  4 Pagesbelieved that globalization is rendering the concepts of geopolitics and the great powers, it is only enhancing the strategies of those whose aims it is to take control. Globally, the population provides the excuses many super powers need to carried out their power manipulation and seek out natural resources. Geopolitics has evolved and grown because of globalization and super powers are constantly rewriting their own policies and setti ng new trends for their sustainable doctrines. Globalization hasRead MoreThe Threat Of The Outer Space870 Words   |  4 PagesAdam: You used a sentence of â€Å"The true worth of Airpower in understanding geopolitics seems to come from how airpower makes geography more accessible† about air power, which is correct, and I agree with you. For the outer space, your outcome and principle idea is â€Å"While outer space may be a new geostrategic concern for developed states, the financial cost of its use will make it an impossibility for weaker states. This doesn’t necessarily mean that weaker states do not see the value in outer spaceRead MoreThe Discovery Of Oil And Its Effects On The World With Energy1506 Words   |  7 PagesIn 1958, oil was first discovered in Nigeria. The discovery has led to the transition from agriculture-based economy to that of oil economy. One would believe that a country that produces a numerous amount of oil used to support the world with e nergy would have improved domestic infrastructures and economic development. Unfortunately, this is not the case in Nigeria. Nigeria has suffered since the discovery of oil and is still suffering till this day. Not only has it created conflicts between otherRead MoreSecurity of Pipelines in Eurasia Essay1918 Words   |  8 PagesIntroduction The geopolitics in Eurasia along with the implications of energy security as well as the risks and opportunities it creates for the U.S. is understood when the layers of conflict and negotiations are analyzed through the various topics that affect international policies. Through the concepts based on energy, politics, security pipelines in Eurasia, international transit integration, and the energy world order, can the conceptual argument be made that natural resources are temporaryRead MoreHow The Geopolitics Central Asia Affected China s Ability Of Securing Its Energy Resources From The Region?2032 Words   |  9 PagesHow has the Geopolitics in Central Asia affected China’s ability in securing its Energy Resources from the Region? There is a significant change in the order of energy in the world, and there is the need of China to enforce its ability in becoming one of the major forces in global markets, and in the geopolitics that occur regarding energy. There are opportunities and challenges that are created as China aims to expand its global and regional linkages as they look for security in the supply ofRead MoreUkraine : The Longest Period Of Ukrainian Independence995 Words   |  4 Pageswith many sources of minerals and agricultural products but even more importantly its a strategically located country and to understand the geopolitical value of Ukraine we have to take a look at the history. In fact one can learn to understand geopolitics just by reading Ukrainiean history. This was a country which at time was part of the Ottoman, Polish and Austrain Empires so Ukraine has been on the borders of empires in fact the name itself is derived from a word meaning borderlands. And as mostRead MoreThe Successf ul Outcome Of The United Nations Essay1044 Words   |  5 Pagesfor greater energy efficiency? †¢ Ample supply is keeping downward pressure on fossil fuel prices, coal, oil and natural gas. When and how will market dynamics change – or might lower prices for some fuels be here to stay? †¢ The impact of local pollution, often energy-related, on air quality is a matter of rising social and political concern in many countries. How can governments act to tackle this problem – and what would these actions mean for the energy sector? The World Energy Outlook 2016Read MoreThe Effects Of Local Pollution On The World Energy Outlook 2016 By The International Energy Agency ( Iea ) Essay1044 Words   |  5 Pagesfor greater energy efficiency? †¢ Ample supply is keeping downward pressure on fossil fuel prices, coal, oil and natural gas. When and how will market dynamics change – or might lower prices for some fuels be here to stay? †¢ The impact of local pollution, often energy-related, on air quality is a matter of rising social and political concern in many countries. How can governments act to tackle this problem – and what would these actions mean for the energy sector? The World Energy Outlook 2016Read MoreCorrelations Between Population and Pollution993 Words   |  4 Pagesincrease in goods movement resulting in air pollution. Like this, population growth affects air pollution. In order to solve air pollution, science is applied such as developing renewable energy. Nowadays, there are solar powered cars, heating, etc. These things don’t emit greenhouse gases. The development of renewable energy will solve the air pollution caused from population growth. NASA scientists performed an experiment to examine how the amount of pollution is influenced by the population density inRead MoreArgumentative Essay - Rising Gas Prices: Who Is to Blame?928 Words   |  4 Pagesthe actual mess the pipeline could cause. This pipeline is already running through Canada from Alberta and would continue through Montana, South Dakota, Nebraska, Kansas, Oklahoma and Texas (Amadeo). This oil is a very dirty and expensive form of energy. The tar sands oil is made mostly of sand, clay and water and is very environmentally destructive. During the process it emits poisonous runoff, which would pollute water, uses large amounts of natural gas and water to extract oil. Forming of this