-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into SAC-13-Create-Tag-POST
- Loading branch information
Showing
5 changed files
with
137 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,119 @@ | ||
package auth | ||
|
||
import ( | ||
"crypto/rand" | ||
"crypto/subtle" | ||
"encoding/base64" | ||
"errors" | ||
"fmt" | ||
"strings" | ||
|
||
"golang.org/x/crypto/argon2" | ||
) | ||
|
||
type params struct { | ||
memory uint32 | ||
iterations uint32 | ||
parallelism uint8 | ||
saltLength uint32 | ||
keyLength uint32 | ||
} | ||
|
||
func ComputePasswordHash(password string) (*string, error) { | ||
p := ¶ms{ | ||
memory: 64 * 1024, | ||
iterations: 3, | ||
parallelism: 2, | ||
saltLength: 16, | ||
keyLength: 32, | ||
} | ||
|
||
salt := make([]byte, p.saltLength) | ||
|
||
if _, err := rand.Read(salt); err != nil { | ||
return nil, err | ||
} | ||
|
||
hash := argon2.IDKey([]byte(password), | ||
salt, | ||
p.iterations, | ||
p.memory, | ||
p.parallelism, | ||
p.keyLength, | ||
) | ||
|
||
b64Salt := base64.RawStdEncoding.EncodeToString(salt) | ||
|
||
b64Hash := base64.RawStdEncoding.EncodeToString(hash) | ||
|
||
encodedHash := fmt.Sprintf("$argon2id$v=%d$m=%d,t=%d,p=%d$%s$%s", argon2.Version, p.memory, p.iterations, p.parallelism, b64Salt, b64Hash) | ||
|
||
return &encodedHash, nil | ||
} | ||
|
||
var ( | ||
ErrInvalidHash = errors.New("the encoded hash is not in the correct format") | ||
ErrIncompatibleVersion = errors.New("incompatible version of argon2") | ||
) | ||
|
||
func ComparePasswordAndHash(password, encodedHash string) (bool, error) { | ||
p, salt, hash, err := decodeHash(encodedHash) | ||
|
||
if err != nil { | ||
return false, err | ||
} | ||
|
||
otherHash := argon2.IDKey([]byte(password), salt, p.iterations, p.memory, p.parallelism, p.keyLength) | ||
|
||
if subtle.ConstantTimeCompare(hash, otherHash) == 1 { | ||
return true, nil | ||
} | ||
|
||
return false, nil | ||
} | ||
|
||
func decodeHash(encodedHash string) (p *params, salt []byte, hash []byte, err error) { | ||
vals := strings.Split(encodedHash, "$") | ||
|
||
if len(vals) != 6 { | ||
return nil, nil, nil, ErrInvalidHash | ||
} | ||
|
||
var version int | ||
|
||
_, err = fmt.Sscanf(vals[2], "v=%d", &version) | ||
|
||
if err != nil { | ||
return nil, nil, nil, err | ||
} | ||
|
||
if version != argon2.Version { | ||
return nil, nil, nil, ErrIncompatibleVersion | ||
} | ||
|
||
p = ¶ms{} | ||
|
||
_, err = fmt.Sscanf(vals[3], "m=%d,t=%d,p=%d", &p.memory, &p.iterations, &p.parallelism) | ||
|
||
if err != nil { | ||
return nil, nil, nil, err | ||
} | ||
|
||
salt, err = base64.RawStdEncoding.Strict().DecodeString(vals[4]) | ||
|
||
if err != nil { | ||
return nil, nil, nil, err | ||
} | ||
|
||
p.saltLength = uint32(len(salt)) | ||
|
||
hash, err = base64.RawStdEncoding.Strict().DecodeString(vals[5]) | ||
|
||
if err != nil { | ||
return nil, nil, nil, err | ||
} | ||
|
||
p.keyLength = uint32(len(hash)) | ||
|
||
return p, salt, hash, nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
package database | ||
|
||
import ( | ||
"github.com/GenerateNU/sac/backend/src/auth" | ||
"github.com/GenerateNU/sac/backend/src/config" | ||
"github.com/GenerateNU/sac/backend/src/models" | ||
|
||
|
@@ -55,11 +56,23 @@ func MigrateDB(settings config.Settings, db *gorm.DB) error { | |
return err | ||
} | ||
|
||
tx := db.Begin() | ||
|
||
if err := tx.Error; err != nil { | ||
return err | ||
} | ||
|
||
passwordHash, err := auth.ComputePasswordHash(settings.SuperUser.Password) | ||
|
||
if err != nil { | ||
return err | ||
} | ||
|
||
superUser := models.User{ | ||
Role: models.Super, | ||
NUID: "000000000", | ||
Email: "[email protected]", | ||
PasswordHash: settings.SuperUser.Password, // TODO: hash this | ||
PasswordHash: *passwordHash, | ||
FirstName: "SAC", | ||
LastName: "Super", | ||
College: models.KCCS, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters