mirror of
https://github.com/billbuchanan/appliedcrypto.git
synced 2026-02-21 11:18:02 +00:00
Update README.md
This commit is contained in:
committed by
GitHub
parent
4a4e1556ce
commit
5ebf14bcd4
@@ -4,7 +4,7 @@
|
||||
|
||||
Objective: The key objective of this lab is to be introduced to some of the fundamental principles involved in cryptography, including the usage of Base-64, hexadecimal, the modulus operator some basic operators (such as AND, OR, X-OR, Rotate Right and Rotate Left), and prime numbers. This lab also involves cracking puzzles, and which have been added to get you to think about the methods involved in cipher cracking. You can undertake the additional challenges if you want to further develop your cryptography skills.
|
||||
|
||||
Go to **vsoc.napier.ac.uk** and find your folder. Run your Ubuntu instance [demo](https://youtu.be/v6H7lHblKes). Lab demo: (Note that you will be using Ubuntu, while the demo shows Kali). A demo of the lab is [here](https://www.youtube.com/watch?v=v6H7lHblKes).
|
||||
Go to **vsoc.napier.ac.uk** and find your folder. Run your Ubuntu instance [demo](https://youtu.be/v6H7lHblKes). The virtual machine's **password** is *napier123*. Lab demo: (Note that you will be using Ubuntu, while the demo shows Kali). A demo of the lab is [here](https://www.youtube.com/watch?v=v6H7lHblKes).
|
||||
|
||||
## Introduction
|
||||
Note: Most of the examples are in Python 3. If there are Python 2 examples, remember and put parenthesis around the print statement string, such as print (hex(val)).
|
||||
@@ -115,7 +115,7 @@ Using Python, what is the Base-64 conversion for the string of “crypto”?
|
||||
|
||||
```python
|
||||
import base64
|
||||
str="crypto"
|
||||
str='crypto'
|
||||
print (base64.b64encode(str.encode()))
|
||||
```
|
||||
|
||||
|
||||
Reference in New Issue
Block a user