Update main.cpp

This commit is contained in:
skadro
2021-06-03 15:00:07 +02:00
committed by GitHub
parent 908abea3d4
commit 7970de8acc
+1 -1
View File
@@ -4,7 +4,7 @@
int main()
{
auto testString = skCrypt("TestString"); // encrypted at compile-time
printf(testString); // automatic decryption on usage (alternatevly .decrypt())
printf(testString); // automatic decryption on usage (alternatively .decrypt())
testString.encrypt(); // encrypt after usage if needed again
// or