Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit b1d1b3e

Browse files
README.md file updated. Application now shows the port number.
1 parent cfa8cbd commit b1d1b3e

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

‎README.md‎

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# File Encryption-Decryption Web-app
2+
3+
[![Maintenance](https://img.shields.io/badge/Maintained%3F-yes-green.svg)](https://GitHub.com/Naereen/StrapDown.js/graphs/commit-activity) ![License](https://img.shields.io/cran/l/devtools)
4+
25
A file encryption-decryption HTTP server. The server encrypts or decrypts the file present on the server. File encryption and decryption is performed using [DES](https://www.cs.uri.edu/cryptography/dessimplified.htm#:~:text=Simplified%20DES%20is%20an%20algorithm,on%20blocks%20of%2012%20bits.) algorithm.
36
The encryption and decryption operation are exposed using REST APIs(The usage is explained below). For efficient routing and implementation of REST APIs gorilla mux server is used.
47

@@ -17,4 +20,8 @@ The encryption and decryption operation are exposed using REST APIs(The usage is
1720
1. Explain the issue that must be fixed or a feature that must to be added.
1821
2. Fork the repository to your github account.
1922
3. Make your changes.
20-
4. Create a pull request from your forked repository to master branch of this repository.
23+
4. Create a pull request Lm your forked repository to master branch of this repository
24+
25+
## License
26+
This project is licensed under GNU GPL v3 license.
27+
Note:- The license is subject to changes in future.

‎config.json‎

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"name": "FES App Server",
3-
"port": 9090,
4-
"protocol": "HTTP",
5-
"dbFilePath": "./storage/db.gosotore"
3+
"port": 8080,
4+
"protocol": "HTTP"
65
}

‎des_config.json‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"fastmode": true,
33
"threadcount": 8,
4-
"buffersize": 100000
4+
"buffersize": 1048576
55
}

‎fesserver/server.go‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,6 @@ func Start() {
8686
router := mux.NewRouter().StrictSlash(true)
8787
initServices(router)
8888
port := ":" + strconv.Itoa(prop.Port)
89+
log.Println("Starting application on port: ", prop.Port)
8990
log.Fatalln(http.ListenAndServe(port, router))
90-
log.Println("Application started on port: ", prop.Port)
9191
}

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /