Skip to content

Atomnp/cryptopals

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 

Repository files navigation

cryptopals

Cryptopals solution for set1 and set2 Website

  1. Clone the repository
  2. Set PYTHONPATH="root repository folder"
  3. And to run, python3 filename.py from the folder the file is in.

All this is easier is vscode use following config open repository home with vscode use config .vscode/launch.json, with setting run from file folder

    "version": "0.2.0",
    "configurations": [
        {
            "name": "Python: Current File",
            "type": "python",
            "request": "launch",
            "program": "${file}",
            "console": "integratedTerminal",
            "cwd":"${fileDirname}",
            "env": {
                "PYTHONPATH":"${workspaceFolder}"
            }
        }
    ]
}
'+

About

Cryptopals solution for set1 and set2

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages