dEEpEst
☣☣ In The Depths ☣☣
Staff member
Administrator
Super Moderator
Hacker
Specter
Crawler
Shadow
- Joined
- Mar 29, 2018
- Messages
- 13,859
- Solutions
- 4
- Reputation
- 27
- Reaction score
- 45,545
- Points
- 1,813
- Credits
- 55,080
7 Years of Service
56%
AES encrypt string
Syntax
Code:
# Just provide a string to encrypt and a password for the key
Encrypt-AES -PlainText 'text to encrypt' -Key 'superSecret12345'
Script
AES decrypt string
Syntax
Code:
# Just provide the encrypted string and the same password from above for the key
Decrypt-AES -CipherText 'text to unEncrypt' -Key 'superSecret12345'
Script