Skip to content

Commit d7a7886

Browse files
committed
Fix links
Signed-off-by: Hugues de Valon <[email protected]>
1 parent 78544a0 commit d7a7886

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ will check if your files are formatted correctly.
3838

3939
## Contributing
4040

41-
Please check the [**Contribution Guidelines**](https://parallaxsecond.github.io/parsec-book/contributing.html)
41+
Please check the [**Contribution Guidelines**](https://parallaxsecond.github.io/parsec-book/contributing/index.html)
4242
to know more about the contribution process.
4343

4444
## License

src/contributing/adding_new_operation_how_to.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -153,11 +153,11 @@ At this point, you will now have a safe Rust interface for the PSA operation you
153153

154154
Add the new operation to the correct
155155
[provider](https://github.com/parallaxsecond/parsec/tree/master/src/providers) (in this case, [Mbed
156-
Crypto](https://github.com/parallaxsecond/parsec/tree/master/src/providers/mbed_provider)) as a
157-
`psa_xxx_internal` method. The operation method should take the user inputs, arrange them in a way
156+
Crypto](https://github.com/parallaxsecond/parsec/tree/master/src/providers/mbed_crypto_provider)) as
157+
a `psa_xxx_internal` method. The operation method should take the user inputs, arrange them in a way
158158
that [`psa-crypto`](#psa-crypto) accepts, and provide any extra logic or storage if required (e.g.
159159
an output buffer). The external implementation is to be added to the provider’s
160-
[`mod.rs`](https://github.com/parallaxsecond/parsec/blob/master/src/providers/mbed_provider/mod.rs)
160+
[`mod.rs`](https://github.com/parallaxsecond/parsec/blob/master/src/providers/mbed_crypto_provider/mod.rs)
161161
file, which outputs a trace entry and passes the call back to the internal implementation.
162162

163163
A default implementation is added to

src/parsec_service/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ They cover the following concepts:
2020
and running the service
2121
- [Installation](install_parsec_linux.md) - installing Parsec as a systemd daemon
2222
- [Configuration](configuration.md) - how to configure Parsec
23-
- [Testing](test.md) - details about the kinds of tests we employ and how to set up your environment
23+
- [Testing](tests) - details about the kinds of tests we employ and how to set up your environment
2424
in preparation for running them
2525

2626
*Copyright 2019 Contributors to the Parsec project.*

src/parsec_service/build_run.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ one](https://github.com/parallaxsecond/parsec/blob/master/e2e_tests/provider_cfg
1818
The `mbed-crypto-provider` feature is going to be used as an example in this guide. This can be
1919
replaced by a subset of the features mentioned above, space or comma separated. If you would like to
2020
test the TPM or PKCS check the [related
21-
guides](test.md#testing-the-tpm-provider-using-the-software-tpm).
21+
guides](tests#testing-the-tpm-provider-using-the-software-tpm).
2222

2323
For the `DomainSocket` listener, the socket folder needs to be created:
2424

@@ -51,8 +51,8 @@ via a command-line argument:
5151
cargo run --features mbed-crypto-provider -- --config e2e_tests/provider_cfg/mbed-crypto/config.toml
5252
```````
5353

54-
From another terminal, it is now possible to execute the [end-to-end
55-
tests](test.md#end-to-end-tests) on Parsec!
54+
From another terminal, it is now possible to execute the [end-to-end tests](tests#end-to-end-tests)
55+
on Parsec!
5656

5757
```````
5858
cd e2e_tests

0 commit comments

Comments
 (0)