phil-fresles-rijndael
Phil Fresle's Rijndael class for 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 (6.6%) to scientific vocabulary
Keywords
Repository
Phil Fresle's Rijndael class for classic ASP
Basic Info
- Host: GitHub
- Owner: R0mb0
- License: other
- Language: Visual Basic 6.0
- Default Branch: main
- Homepage: http://www.frez.co.uk
- Size: 91.8 KB
Statistics
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
- Releases: 1
Topics
Metadata Files
README.md
Phil Fresle's Rijndael library for ASP - Adjusted library documentation
rijndael.asp's interface
Public Function EncryptData(ByVal message, ByVal password)Public Function DecryptData(ByVal message, ByVal password)
Example how to encrypt and decrypt
```asp <%@LANGUAGE="VBSCRIPT"%> <!--#include file="rijndael.asp"--> <% Dim key Dim text Dim crypted Dim decrypted
key = "protect" text = "Something to be protected"
Response.write("
Informations
" & crypted)Response.write("
Key: " & key)
Response.write("
Text: " & text)
crypted = EncryptData(text, key)
Response.write("
Crypted message:
" & crypted)decrypted = DecryptData(crypted, key)
Response.write("
Decrypted message:
" & decrypted) %> ```License
- FILENAME: Rijndael.asp
- AUTHOR: Phil Fresle
- CREATED: 19-Feb-2001
- COPYRIGHT: Copyright 2001 Phil Fresle
- EMAIL: phil@frez.co.uk
WEB: http://www.frez.co.uk
DESCRIPTION: Implementation of the AES Rijndael Block Cipher. Inspired by Mike Scott's implementation in C.
⚠️ I've modified the original library for working with strings directly rather than transforms it in bytes.
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: "Fresles" given-names: "Phil" title: "Rijndael" date-released: 2001-02-19 url: "http://www.frez.co.uk"
GitHub Events
Total
- Release event: 1
- Push event: 30
- Create event: 3
Last Year
- Release event: 1
- Push event: 30
- Create event: 3
Issues and Pull Requests
Last synced: 11 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