This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* FILE : AES_Example.go | |
* PROJECT : INFO-1340 - Block Ciphers | |
* PROGRAMMER : Daniel Pieczewski, ref: https://github.com/mickelsonm | |
* FIRST VERSION : 2020-04-12 | |
* DESCRIPTION : | |
* The function(s) in this file make up example code for encryption and decryption of a block of text | |
* using the Golang standard library AES implementation using the Cipher Feedback mode of encryption (CFB). | |
* DISCLAIMER: There is no way that this a secure implementation of AES. This is only for my personal learning. | |
* So help you God if this ends up in some commercial application. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
param ( | |
#Take in a string as the desired path and name for the directory | |
[string]$path | |
) | |
# Pipe anything you don't want printed to the shell into Out-Null | |
# Create the directoies: | |
New-Item $path -ItemType Directory | Out-Null | |
New-Item $path/src/ -ItemType Directory | Out-Null | |
New-Item $path/bin/ -ItemType Directory | Out-Null |