Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
persona
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hexang 息壤平台
persona
Commits
12723329
Commit
12723329
authored
12 years ago
by
Sean McArthur
Browse files
Options
Downloads
Patches
Plain Diff
remove generate_ephemeral_keys.sh, use .js
parent
1149d4bf
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
scripts/generate_ephemeral_keys.sh
+0
-38
0 additions, 38 deletions
scripts/generate_ephemeral_keys.sh
with
0 additions
and
38 deletions
scripts/generate_ephemeral_keys.sh
deleted
100755 → 0
+
0
−
38
View file @
1149d4bf
#!/bin/bash
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
SCRIPT_DIR
=
"
$(
cd
"
$(
dirname
"
$0
"
)
"
&&
pwd
)
"
VAR
=
$SCRIPT_DIR
/../var
export
PATH
=
$PATH
:
$SCRIPT_DIR
/../node_modules/.bin
# if keys already exist, do nothing
if
[
-f
$VAR
/root.cert
]
;
then
exit
0
fi
GENERATE_KEYPAIR
=
`
which generate-keypair 2> /dev/null
`
CERTIFY
=
`
which certify 2> /dev/null
`
if
[
!
-x
"
$GENERATE_KEYPAIR
"
]
;
then
echo
"can't find generate-keypair from the jwcrypto package. try: npm install"
exit
1
fi
if
[
!
-x
"
$CERTIFY
"
]
;
then
echo
"can't find certify from the jwcrypto package. try: rm -rf node_modules && npm install"
exit
1
fi
echo
'*** Generating ephemeral keys used for testing ***'
$GENERATE_KEYPAIR
-k
256
-a
rsa
mkdir
-p
$VAR
# public key will be stored as a self signed certificate with an embedded
# creation date (so that if the key is updated, we can revoke outstanding
# certificates - GH-599 & GH-600)
$CERTIFY
-s
key.secretkey
-p
key.publickey
>
$VAR
/root.cert
rm
key.publickey
mv
key.secretkey
$VAR
/root.secretkey
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment