- Go 83.4%
- HTML 16.6%
| handlers | ||
| models | ||
| test | ||
| utils | ||
| .gitignore | ||
| go.mod | ||
| go.sum | ||
| LICENSE | ||
| README.md | ||
| server.go | ||
Golang Backend API for FIS (File Integrity Surveillance) Application
Developing a simple Golang backend API with the Echo framework for FIS(File Integrity Surveillance) application which can be found here.
This API stores IDs and their corresponding hashes in a SQL server and provides functionality to verify if a given hash matches the stored hash for a specific ID. All the communication between the Application and API is secured using TLS encryption(HTTPS).
Thereby providing both confidentiality and integrity service that aligns with the CIA (Confidentiality, Integrity, Availability) triad for data security.
Getting Started
To get started with this project, follow these steps:
Prerequisites
- Go installed on your machine.
- A SQL database server(sqlite) to store IDs and hashes.
Installation
- Clone this repository to your local machine:
git clone https://github.com/justsaumit/go-fis-api.git
cd go-fis-api
- Initialize and install project dependencies using Go modules:
go mod vendor
-
Create a configuration file (e.g., config.yaml) to specify your database settings and other configurations.
-
Run the server:
go run server.go
Usage
Once the server is running, you can access the API endpoints to add file hashes and verify them.
- To add a file hash, make a POST request to
/uploadby uploading the file using multipart form, an generated ID and hash would be returned. - To verify a file hash, make a POST request to
/verifywith previously generated ID and the file, a JSON message with Hashes matching or not will be recieved as response .
Usage
Once the server is operational, you can interact with the API endpoints to add and verify file hashes.
-
Adding a File Hash:
- To add a file hash, send a POST request to the
/uploadendpoint. You'll need to upload the file using multipart/form-data. The server will generate an ID and a hash for the uploaded file, which will be returned in the response.
- To add a file hash, send a POST request to the
-
Verifying a File Hash:
- To verify a file hash, send a POST request to the
/verifyendpoint. Include the previously generated ID as a form field and upload the file using multipart/form-data. The server will respond with a JSON message indicating whether the hash of the uploaded file matches the stored hash for the given ID.
- To verify a file hash, send a POST request to the
To-Do-List
- Handle Uploaded files (API)
- Perform short ID Generation (API)
- Perform Hashing (API)
- Connect with DB
- Store JSON data to DB
- Perform verification
License
This project is licensed under the MIT License - see the LICENSE file for details.