Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
silkaj
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
clients
python
silkaj
Merge requests
!128
[fix]
#278
: changing regex for PubSec authfile authentication
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
[fix]
#278
: changing regex for PubSec authfile authentication
273_pubsec
into
dev
Overview
2
Commits
5
Pipelines
3
Changes
1
All threads resolved!
Hide all comments
Merged
matograine
requested to merge
273_pubsec
into
dev
5 years ago
Overview
2
Commits
5
Pipelines
3
Changes
1
All threads resolved!
Hide all comments
Expand
use Duniterpy's regexp for authfile checking
document the function auth_by_auth_file()
Close
#278 (closed)
.
Edited
5 years ago
by
Moul
0
0
Merge request reports
Viewing commit
5870c5b7
Prev
Next
Show latest version
1 file
+
3
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
5870c5b7
[mod] Sort imports: external, duniterpy, silkaj
· 5870c5b7
Moul
authored
5 years ago
silkaj/auth.py
+
3
−
1
Options
@@ -16,13 +16,15 @@ along with Silkaj. If not, see <https://www.gnu.org/licenses/>.
"""
import
re
from
silkaj.tools
import
message_exit
from
click
import
command
,
option
,
pass_context
,
confirm
from
getpass
import
getpass
from
pathlib
import
Path
from
duniterpy.key
import
SigningKey
from
duniterpy.key.scrypt_params
import
ScryptParams
from
silkaj.tools
import
message_exit
@pass_context
def
auth_method
(
ctx
):
Loading