├── .gitignore ├── README.md └── one_time_password_examples ├── README.md ├── token.java ├── token.lua ├── token.php ├── token.pl ├── token.py ├── token.py3 ├── token.rb └── token.rs /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/token-functions/HEAD/README.md -------------------------------------------------------------------------------- /one_time_password_examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/token-functions/HEAD/one_time_password_examples/README.md -------------------------------------------------------------------------------- /one_time_password_examples/token.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/token-functions/HEAD/one_time_password_examples/token.java -------------------------------------------------------------------------------- /one_time_password_examples/token.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/token-functions/HEAD/one_time_password_examples/token.lua -------------------------------------------------------------------------------- /one_time_password_examples/token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/token-functions/HEAD/one_time_password_examples/token.php -------------------------------------------------------------------------------- /one_time_password_examples/token.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/token-functions/HEAD/one_time_password_examples/token.pl -------------------------------------------------------------------------------- /one_time_password_examples/token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/token-functions/HEAD/one_time_password_examples/token.py -------------------------------------------------------------------------------- /one_time_password_examples/token.py3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/token-functions/HEAD/one_time_password_examples/token.py3 -------------------------------------------------------------------------------- /one_time_password_examples/token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/token-functions/HEAD/one_time_password_examples/token.rb -------------------------------------------------------------------------------- /one_time_password_examples/token.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/token-functions/HEAD/one_time_password_examples/token.rs --------------------------------------------------------------------------------