{"id":22898095,"url":"https://github.com/r0mb0/timed_password_generator_classic_asp","last_synced_at":"2026-03-19T23:57:15.330Z","repository":{"id":266857406,"uuid":"899427748","full_name":"R0mb0/Timed_password_generator_classic_asp","owner":"R0mb0","description":"Class to retrieve timed generate passwords. ","archived":false,"fork":false,"pushed_at":"2025-04-30T14:41:20.000Z","size":28,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-26T07:30:15.714Z","etag":null,"topics":["asp-classic","class","classic-asp","italian-developers","library","password-generator","r0mb0","security","security-tools","timed","timed-password-generator","web","web-security"],"latest_commit_sha":null,"homepage":"","language":"Classic ASP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/R0mb0.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":"CITATION.cff","codeowners":null,"security":"SECURITY.md","support":"SUPPORT.md","governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":null,"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"lfx_crowdfunding":null,"custom":"PayPal.Me/R0mb0"}},"created_at":"2024-12-06T08:45:41.000Z","updated_at":"2026-01-13T10:30:11.000Z","dependencies_parsed_at":"2025-06-05T06:39:16.913Z","dependency_job_id":"52aac28f-8d9d-4b2a-813c-54da2c83d775","html_url":"https://github.com/R0mb0/Timed_password_generator_classic_asp","commit_stats":null,"previous_names":["r0mb0/timed_password_generator_classic_asp"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/R0mb0/Timed_password_generator_classic_asp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/R0mb0%2FTimed_password_generator_classic_asp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/R0mb0%2FTimed_password_generator_classic_asp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/R0mb0%2FTimed_password_generator_classic_asp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/R0mb0%2FTimed_password_generator_classic_asp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/R0mb0","download_url":"https://codeload.github.com/R0mb0/Timed_password_generator_classic_asp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/R0mb0%2FTimed_password_generator_classic_asp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28890320,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-29T21:06:44.224Z","status":"ssl_error","status_checked_at":"2026-01-29T21:06:42.160Z","response_time":59,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["asp-classic","class","classic-asp","italian-developers","library","password-generator","r0mb0","security","security-tools","timed","timed-password-generator","web","web-security"],"created_at":"2024-12-14T00:29:20.289Z","updated_at":"2026-03-19T23:57:15.308Z","avatar_url":"https://github.com/R0mb0.png","language":"Classic ASP","funding_links":["PayPal.Me/R0mb0","http://paypal.me/R0mb0"],"categories":[],"sub_categories":[],"readme":"# Timed password generator in Classic ASP\n\n[![Codacy Badge](https://app.codacy.com/project/badge/Grade/b002370296f74fce8bf189ab7ca27fda)](https://app.codacy.com/gh/R0mb0/Timed_password_generator_classic_asp/dashboard?utm_source=gh\u0026utm_medium=referral\u0026utm_content=\u0026utm_campaign=Badge_grade)\n\n[![Maintenance](https://img.shields.io/badge/Maintained%3F-yes-green.svg)](https://github.com/R0mb0/Timed_password_generator_classic_asp)\n[![Open Source Love svg3](https://badges.frapsoft.com/os/v3/open-source.svg?v=103)](https://github.com/R0mb0/Timed_password_generator_classic_asp)\n[![MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/license/mit)\n\n[![Donate](https://img.shields.io/badge/PayPal-Donate%20to%20Author-blue.svg)](http://paypal.me/R0mb0)\n\n## Class Logic\n```mermaid\nflowchart LR\n    A[/Timed passowrd generator/] --\u003e B{If}\n    B --\u003e |Password and timestamp file is present| C[Check date]\n    B --\u003e |Password and timestamp file is not present| D[Generate a file with a new password and the timestamp]\n    C --\u003e E{If}\n    E --\u003e |The date is older than one day| G[Genereate a new password and update the file]\n    E --\u003e |The date is not older than one day| F[/Return password/]\n    D --\u003e F\n    G --\u003e F\n```\n\n\u003e \"one day\" is an example of time, in the class this parameter in editable\n\n## `timed_password_generator.class.asp`'s avaible function\n\n- Retrieve the password -\u003e `Public Function Get_password()`\n\n## How to use \n\n\u003e From `timed_password_generator.class.asp`\n\n1. Set class parameters\n   ```asp\n        path_of_file = \"\" '\u003c-- Set param\n        update_time = 1 '\u003c-- Set param\n        'Set one of this params\n        'time_check = \"yyyy\" '\u003c- Year\n        'time_check = \"q\"    '\u003c- Quarter\n        'time_check = \"m\"    '\u003c- Month\n        'time_check = \"y\"    '\u003c- Day of year\n        time_check = \"d\"    '\u003c- Day\n        'time_check = \"w\"    '\u003c- Weekday\n        'time_check = \"ww\"   '\u003c- Week of year\n        'time_check = \"h\"    '\u003c- Hour\n        'time_check = \"n\"    '\u003c- Minute\n        'time_check = \"s\"    '\u003c- Second\n   ```\n\u003e From `Test.asp`\n\n2. Initialize the class\n   ```asp\n    \u003c%@LANGUAGE=\"VBSCRIPT\"%\u003e\n    \u003c!--#include file=\"timed_password_generator.class.asp\"--\u003e\n    \u003c%\n        Dim my_psw\n        Set my_psw = new timed_password_generator\n   ```\n3. Retrieve the password\n   ```asp\n        Response.write(\"\u003ch1\u003e Password of the day: \u003c/h1\u003e\u003cbr\u003e\")\n        Response.write(my_psw.Get_password())\n    %\u003e \n   ```\n\n### A part of this project was inspired by [Salman's Web Development Blog](https://salman-w.blogspot.com/2009/06/generate-random-strings-using.html)\n\n\u003ca href=\"https://github.com/R0mb0/Not_made_by_AI\"\u003e\n  \u003cpicture\u003e\n    \u003csource media=\"(prefers-color-scheme: dark)\" srcset=\"https://github.com/R0mb0/Not_made_by_AI/blob/main/Badge/SVG/NotMadeByAIDark.svg\"\u003e\n    \u003csource media=\"(prefers-color-scheme: light)\" srcset=\"https://github.com/R0mb0/Not_made_by_AI/blob/main/Badge/SVG/NotMadeByAILight.svg\"\u003e\n    \u003cimg alt=\"Not made by AI\" src=\"https://github.com/R0mb0/Not_made_by_AI/blob/main/Badge/SVG/NotMadeByAIDefault.svg\"\u003e\n  \u003c/picture\u003e\n\u003c/a\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fr0mb0%2Ftimed_password_generator_classic_asp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fr0mb0%2Ftimed_password_generator_classic_asp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fr0mb0%2Ftimed_password_generator_classic_asp/lists"}