timed_password_generator_classic_asp
Class to retrieve timed generate passwords.
https://github.com/r0mb0/timed_password_generator_classic_asp
Science Score: 44.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (7.9%) to scientific vocabulary
Keywords
Repository
Class to retrieve timed generate passwords.
Basic Info
Statistics
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
- Releases: 1
Topics
Metadata Files
README.md
Timed password generator in Classic ASP
Class Logic
mermaid
flowchart LR
A[/Timed passowrd generator/] --> B{If}
B --> |Password and timestamp file is present| C[Check date]
B --> |Password and timestamp file is not present| D[Generate a file with a new password and the timestamp]
C --> E{If}
E --> |The date is older than one day| G[Genereate a new password and update the file]
E --> |The date is not older than one day| F[/Return password/]
D --> F
G --> F
"one day" is an example of time, in the class this parameter in editable
timed_password_generator.class.asp's avaible function
- Retrieve the password ->
Public Function Get_password()
How to use
From
timed_password_generator.class.asp
Set class parameters
asp path_of_file = "" '<-- Set param update_time = 1 '<-- Set param 'Set one of this params 'time_check = "yyyy" '<- Year 'time_check = "q" '<- Quarter 'time_check = "m" '<- Month 'time_check = "y" '<- Day of year time_check = "d" '<- Day 'time_check = "w" '<- Weekday 'time_check = "ww" '<- Week of year 'time_check = "h" '<- Hour 'time_check = "n" '<- Minute 'time_check = "s" '<- SecondFrom
Test.aspInitialize the class
asp <%@LANGUAGE="VBSCRIPT"%> <!--#include file="timed_password_generator.class.asp"--> <% Dim my_psw Set my_psw = new timed_password_generatorRetrieve the password
asp Response.write("<h1> Password of the day: </h1><br>") Response.write(my_psw.Get_password()) %>
A part of this project was inspired by Salman's Web Development Blog
Owner
- Name: Francesco Rombaldoni
- Login: R0mb0
- Kind: user
- Location: Italy
- Company: INRCA/SIA
- Repositories: 20
- Profile: https://github.com/R0mb0
If I'm living in a crisis without realizing it?
Citation (CITATION.cff)
cff-version: 1.2.0 message: "If you use this software, please cite it as below." authors: - family-names: "Rombaldoni" given-names: "Francesco" title: "Timed_password_generator_classic_asp" version: 1.0.0 date-released: 2024-12-12 url: "https://github.com/R0mb0/Timed_password_generator_classic_asp"
GitHub Events
Total
- Release event: 1
- Watch event: 1
- Push event: 13
- Create event: 3
Last Year
- Release event: 1
- Watch event: 1
- Push event: 13
- Create event: 3
Issues and Pull Requests
Last synced: 7 months ago
All Time
- Total issues: 0
- Total pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Total issue authors: 0
- Total pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 0
- Pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Issue authors: 0
- Pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0