Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jualoppaz/psi7
Proyecto Node.js y AngularJS con MongoDB para firmas digitales para la asignatura SSII de la US. Node.js and AngularJS application connected with a MongoDB database for Digital Sign.
https://github.com/jualoppaz/psi7
Last synced: about 5 hours ago
JSON representation
Proyecto Node.js y AngularJS con MongoDB para firmas digitales para la asignatura SSII de la US. Node.js and AngularJS application connected with a MongoDB database for Digital Sign.
- Host: GitHub
- URL: https://github.com/jualoppaz/psi7
- Owner: jualoppaz
- Created: 2014-05-17T18:30:46.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-07-05T19:08:25.000Z (over 10 years ago)
- Last Synced: 2024-04-14T12:42:41.582Z (7 months ago)
- Language: JavaScript
- Homepage: http://psi7.herokuapp.com
- Size: 20.3 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
##Español
Puedes probar la aplicación en: http://psi7.herokuapp.com
###Justificación
Este proyecto surge como trabajo para la asignatura "Seguridad en Sistemas Informáticos y en Internet" del Grado en Ingeniería Informática - Ingeniería del Software de la Universidad de Sevilla.###Tecnologías
En este proyecto he usado las siguientes tecnologías:* MongoDB: como base de datos de la aplicación.
* NodeJS: para la implementación del servidor.
* AngularJS: para el cliente.
* HTML: para las vistas.###Casos de uso
En estas aplicación podemos:* Generar claves RSA de 512, 1024 o 2048 bits.
* Almacenar el par de claves en el servidor(por comodidad para el usuario).
* Firmar mensajes con la clave privada generada, bien copiándola o bien consultándola en la base de datos con el identificador indicado.
* Verificar la firma del mensaje con la clave pública (sólo se permite si la clave está almacenada en el servidor).###Estructura del proyecto
El proyecto está estructurado de la siguiente forma:* public: carpeta con todos los ficheros proporcionados al cliente.
* css: carpeta con las hojas de estilo.
* bootstrap.css
* bootstrap-theme.css
* bootstrapv2.1.1.css
* jmlp.css
* jmlpTFG.css
* images: carpeta con las imágenes usadas en la aplicación.
* favicon.png
* js: carpeta con los controladores de AngularJS y la librería jsrsasign
* jsrsasign
* aplicacion.js
* docs.min.js
* firma.js
* generacionDeClaves.js
* verificacion.js
* application.html
* firma.html
* generacionDeClaves.html
* index.html
* main.js
* verificacion.html
* package.json: dependencias de nuestro proyecto Node.js.
* Procfile: archivo necesario para el despliegue en Heroku.
* README.md: este fichero.
* server.js: archivo para la creación del servidor.
_____________________________________________________________________________________________Juan Manuel López Pazos, 2014
##English
You can try the app in: http://psi7.herokuapp.com
###Justification
This project was born as a deliverable for the "Seguridad en Sistemas Informáticos y en Internet" subject in "Grado en Ingeniería Informática - Ingeniería del Software" offered by Universidad de Sevilla.###Technologies
In this project I have used the following technologies:* MongoDB: as the database to storage the application data.
* NodeJS: for the server implementation.
* AngularJS: for the client side.
* HTML: for client templates.###User cases
In this application you can:* Generate 512, 1024 or 2048 bits RSA Keys.
* Store the key pair in the data base giving an identificator(only if you want for your comfort).
* Sign messages with the generated private key, copying the private key or retrieving it from de data base with the given identificator.
* Verify the message sign with the public key (currently it's possible only if you have stored the key pair in the database).###Project structure
The project is structured as follows:* public: static files sent to client.
* css: application stylesheets.
* bootstrap.css
* bootstrap-theme.css
* bootstrapv2.1.1.css
* jmlp.css
* jmlpTFG.css
* images: application images.
* favicon.png
* js: AngularJS controllers and jsrsasign library.
* jsrsasign
* aplicacion.js
* docs.min.js
* firma.js
* generacionDeClaves.js
* verificacion.js
* application.html
* firma.html
* generacionDeClaves.html
* index.html
* main.js
* verificacion.html
* package.json: our Node.js project dependencies.
* Procfile: required file by Heroku for the deployment.
* README.md: the file you're reading.
* server.js: file for the server creation._____________________________________________________________________________________________
Juan Manuel López Pazos, 2014