Book Image

The Modern C# Challenge

By : Rod Stephens
Book Image

The Modern C# Challenge

By: Rod Stephens

Overview of this book

C# is a multi-paradigm programming language. The Modern C# Challenge covers with aspects of the .NET Framework such as the Task Parallel Library (TPL) and CryptoAPI. It also encourages you to explore important programming trade-offs such as time versus space or simplicity. There may be many ways to solve a problem and there is often no single right way, but some solutions are definitely better than others. This book has combined these solutions to help you solve real-world problems with C#. In addition to describing programming trade-offs, The Modern C# Challenge will help you build a useful toolkit of techniques such as value caching, statistical analysis, and geometric algorithms. By the end of this book, you will have walked through challenges in C# and explored the .NET Framework in order to develop program logic for real-world applications.
Table of Contents (17 chapters)
Title Page
Copyright and Credits
Dedication
Packt Upsell
Contributors
Preface
Free Chapter
1
Mathematics
3
Dates and Times
4
Randomization
6
Files and Directories
7
Advanced C# and .NET Features
Index

Chapter 9. Cryptography

This chapter describes problems in cryptography. The first few problems ask you to use cryptographic systems that were once state-of-the-art but that are now insecure. They are purely for fun and are of historical significance. Later problems use modern, secure techniques, such as the .NET Framework's cryptographic library, to build secure programs.

When studying cryptography, it's useful to know a few basic terms. A key is a piece of secret information that you can use to encrypt and decrypt messages. Sometimes, a password is a key. Other times, a password is used to generate a key in a format suitable for use by a particular encryption algorithm. A message that is not encrypted is called plaintext. The encrypted version of plaintext is called ciphertext.

Traditionally, plaintext and ciphertext are written in five-letter groups of uppercase letters without punctuation or spaces, at least for older encryption systems such as the Caesar substitution and Vigenère ciphers...