-
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.
Port "Use general token signing secret"
Port of go-gitea/gitea#29205 Use a clearly defined "signing secret" for token signing. (cherry picked from commit 8be198cdef0a486f417663b1fd6878458d7e5d92)
- Loading branch information
1 parent
cfd6420
commit 62d3e52
Showing
13 changed files
with
131 additions
and
61 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
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,34 @@ | ||
// Copyright 2024 The Gitea Authors. All rights reserved. | ||
// SPDX-License-Identifier: MIT | ||
|
||
package generate | ||
|
||
import ( | ||
"encoding/base64" | ||
"strings" | ||
"testing" | ||
|
||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
func TestDecodeJwtSecret(t *testing.T) { | ||
_, err := DecodeJwtSecret("abcd") | ||
assert.ErrorContains(t, err, "invalid base64 decoded length") | ||
_, err = DecodeJwtSecret(strings.Repeat("a", 64)) | ||
assert.ErrorContains(t, err, "invalid base64 decoded length") | ||
|
||
str32 := strings.Repeat("x", 32) | ||
encoded32 := base64.RawURLEncoding.EncodeToString([]byte(str32)) | ||
decoded32, err := DecodeJwtSecret(encoded32) | ||
assert.NoError(t, err) | ||
assert.Equal(t, str32, string(decoded32)) | ||
} | ||
|
||
func TestNewJwtSecret(t *testing.T) { | ||
secret, encoded, err := NewJwtSecret() | ||
assert.NoError(t, err) | ||
assert.Len(t, secret, 32) | ||
decoded, err := DecodeJwtSecret(encoded) | ||
assert.NoError(t, err) | ||
assert.Equal(t, secret, decoded) | ||
} |
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
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,34 @@ | ||
// Copyright 2024 The Gitea Authors. All rights reserved. | ||
// SPDX-License-Identifier: MIT | ||
|
||
package setting | ||
|
||
import ( | ||
"testing" | ||
|
||
"code.gitea.io/gitea/modules/generate" | ||
"code.gitea.io/gitea/modules/test" | ||
|
||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
func TestGetGeneralSigningSecret(t *testing.T) { | ||
// when there is no general signing secret, it should be generated, and keep the same value | ||
assert.Nil(t, generalSigningSecret.Load()) | ||
s1 := GetGeneralTokenSigningSecret() | ||
assert.NotNil(t, s1) | ||
s2 := GetGeneralTokenSigningSecret() | ||
assert.Equal(t, s1, s2) | ||
|
||
// the config value should always override any pre-generated value | ||
cfg, _ := NewConfigProviderFromData(` | ||
[oauth2] | ||
JWT_SECRET = BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB | ||
`) | ||
defer test.MockVariableValue(&InstallLock, true)() | ||
loadOAuth2From(cfg) | ||
actual := GetGeneralTokenSigningSecret() | ||
expected, _ := generate.DecodeJwtSecret("BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB") | ||
assert.Len(t, actual, 32) | ||
assert.EqualValues(t, expected, actual) | ||
} |
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
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
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