Skip to content

Commit cc863d6

Browse files
committed
Added logo and format documentation
1 parent 5561be4 commit cc863d6

File tree

5 files changed

+17
-17
lines changed

5 files changed

+17
-17
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
[![Donate via PayPal](https://img.shields.io/badge/donate-paypal-87ceeb.svg)](https://www.paypal.com/donate/?hosted_button_id=NZUEC5XS8MFBJ)
44
*Please consider supporting this project by making a donation via [PayPal](https://www.paypal.com/donate/?hosted_button_id=NZUEC5XS8MFBJ)*
55

6-
This open-source project provides a collection of high-quality [Go](https://go.dev/) (Golang) [packages](#packages).
7-
8-
Each package adheres to common conventions and can be imported individually into any project.
6+
![gogen logo](gogen_logo.png)
97

8+
**This open-source project provides a collection of high-quality [Go](https://go.dev/) (Golang) [packages](#packages).**
9+
Each package adheres to common conventions and can be imported individually into any project.
1010
These packages serve as a solid foundation for building fully-featured, production-ready web services.
1111

1212
You can generate a new web service by running `make project CONFIG=project.cfg`. The project's name, description, and other settings can be customized in the configuration file specified by the CONFIG parameter.
@@ -37,7 +37,7 @@ The package documentation is available at: [https://pkg.go.dev/github.com/tecnic
3737

3838
## Packages
3939

40-
gogen offers a comprehensive collection of well-tested Go packages.
40+
**gogen** offers a comprehensive collection of well-tested Go packages.
4141
Each package adheres to common conventions and coding standards, making them easy to integrate into your projects.
4242

4343
* [awsopt](pkg/awsopt) – Utilities for configuring common AWS options with the aws-sdk-go-v2 library.

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.108.5
1+
1.108.6

examples/service/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ require (
1111
github.com/spf13/cobra v1.10.1
1212
github.com/spf13/viper v1.21.0
1313
github.com/stretchr/testify v1.11.1
14-
github.com/tecnickcom/gogen v1.108.5
14+
github.com/tecnickcom/gogen v1.108.6
1515
go.uber.org/zap v1.27.0
1616
)
1717

gogen_logo.png

21.8 KB
Loading

pkg/passwordhash/passwordhash.go

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -32,17 +32,17 @@ Example:
3232
Password: "Test-Password-01234"
3333
3434
{
35-
"P": { < Argon2id parameters.
36-
"A": "argon2id", < Name of the hashing algorithm (always "argon2id").
37-
"V": 19, < Argon2id algorithm version (0x13).
38-
"K": 32, < Length of the returned byte-slice that can be used as a cryptographic key.
39-
"S": 16, < Length of the random password salt.
40-
"T": 3, < Number of passes over the memory.
41-
"M": 65536, < Size of the memory in KiB.
42-
"P": 16 < Number of threads used by the hashing algorithm.
43-
},
44-
"S": "wQYm4bfktbHq2omIwFu+4Q==", < base64-encoded random salt of "P.S" length.
45-
"K": "aU8hO900Odq6aKtWiWz3RW9ygn734liJaPtM6ynvkYI=" < base64-encoded Argon2id password hash.
35+
"P": { < Argon2id parameters.
36+
"A": "argon2id", < Name of the hashing algorithm (always "argon2id").
37+
"V": 19, < Argon2id algorithm version (0x13).
38+
"K": 32, < Length of the returned byte-slice that can be used as a cryptographic key.
39+
"S": 16, < Length of the random password salt.
40+
"T": 3, < Number of passes over the memory.
41+
"M": 65536, < Size of the memory in KiB.
42+
"P": 16 < Number of threads used by the hashing algorithm.
43+
},
44+
"S": "wQYm4bfktbHq2omIwFu+4Q==", < base64-encoded random salt of "P.S" length.
45+
"K": "aU8hO900Odq6aKtWiWz3RW9ygn734liJaPtM6ynvkYI=" < base64-encoded Argon2id password hash.
4646
}
4747
4848
While other serialization methods are available, JSON and base64 have been

0 commit comments

Comments
 (0)