Skip to content

aayushprime/cryptopals

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cryptopals

My attempt at cryptopals

  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

My attempt at cryptopals

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages