Skip to content
This repository has been archived by the owner on Mar 18, 2024. It is now read-only.

Commit

Permalink
Merge pull request #90 from UlfBj/master
Browse files Browse the repository at this point in the history
testcredgen.sh fix for missing ca dir
  • Loading branch information
UlfBj authored Dec 11, 2023
2 parents 852b779 + 46119d5 commit 1c64e54
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions testCredGen/testCredGen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ COMPANY="" # company name
########################### CA ############################
if [[ "$ROLE" == "ca" ]]
then
if ! test -d ca; then
mkdir ca
fi
echo -e "${BOLD}Generating RSA AES-256 Private Key for Root Certificate Authority${CLEAR}"
openssl genrsa -aes256 -out ca/Root.CA.key 4096
echo -e "${BOLD}Generating Certificate for Root Certificate Authority${CLEAR}"
Expand Down
3 changes: 2 additions & 1 deletion tutorial/content/server/Access-control-servers/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ If the cache is full, caching of one more is rejected until a cached token becom

### Server configuration
The configuration available for the servers is whether the protocols that they implement to expose their APIS are TLS protected or not.
The same framework that is used for generating credentials for the client-server communication described [here](/automotive-viss2/server#tls-configuration) can be used here also.
The same framework that is used for generating credentials for the client-server communication described [here](https://github.com/w3c/automotive-viss2/tree/master/testCredGen/)
can be used in this case also.
These credentials should however to follow good security practises be separate from what is used in the client-server communication.
The different port number for the respective servers are shown below.
| Server | Port number: No TLS | Port number: TLS |
Expand Down

0 comments on commit 1c64e54

Please sign in to comment.