Skip to content

Commit 90ed378

Browse files
authored
Merge pull request #286 from Yubico/docs-update-github-links
docs: updated GitHub repo links to point to HEAD branch
2 parents c4ff149 + 47dd323 commit 90ed378

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

docs/users-manual/application-piv/private-keys.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -273,8 +273,8 @@ catch (ArgumentException ex)
273273
- [RFC 5208](https://tools.ietf.org/html/rfc5208) - PKCS#8 Private Key format
274274
- [RFC 7748](https://tools.ietf.org/html/rfc7748) - Curve25519 and Curve448
275275
- [RFC 7468](https://tools.ietf.org/html/rfc7468) - PEM encoding
276-
- [SDK PIV integration tests](https://github.com/Yubico/Yubico.NET.SDK/tree/main/Yubico.YubiKey/tests/integration/Yubico/YubiKey/Piv)
276+
- [SDK PIV integration tests](https://github.com/Yubico/Yubico.NET.SDK/tree/HEAD/Yubico.YubiKey/tests/integration/Yubico/YubiKey/Piv)
277277
- SDK unit tests for additional usage examples
278-
- [Curve25519PrivateKeyTests](https://github.com/Yubico/Yubico.NET.SDK/blob/main/Yubico.YubiKey/tests/unit/Yubico/YubiKey/Cryptography/Curve25519PrivateKeyTests.cs)
279-
- [ECPrivateKeyTests](https://github.com/Yubico/Yubico.NET.SDK/blob/main/Yubico.YubiKey/tests/unit/Yubico/YubiKey/Cryptography/ECPrivateKeyTests.cs)
280-
- [RSAPrivateKeyTests](https://github.com/Yubico/Yubico.NET.SDK/blob/main/Yubico.YubiKey/tests/unit/Yubico/YubiKey/Cryptography/RSAPrivateKeyTests.cs)
278+
- [Curve25519PrivateKeyTests](https://github.com/Yubico/Yubico.NET.SDK/blob/HEAD/Yubico.YubiKey/tests/unit/Yubico/YubiKey/Cryptography/Curve25519PrivateKeyTests.cs)
279+
- [ECPrivateKeyTests](https://github.com/Yubico/Yubico.NET.SDK/blob/HEAD/Yubico.YubiKey/tests/unit/Yubico/YubiKey/Cryptography/ECPrivateKeyTests.cs)
280+
- [RSAPrivateKeyTests](https://github.com/Yubico/Yubico.NET.SDK/blob/HEAD/Yubico.YubiKey/tests/unit/Yubico/YubiKey/Cryptography/RSAPrivateKeyTests.cs)

docs/users-manual/application-piv/public-keys.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -241,8 +241,8 @@ catch (CryptographicException ex)
241241
- [RFC 5280](https://tools.ietf.org/html/rfc5280) - SubjectPublicKeyInfo format
242242
- [RFC 7468](https://tools.ietf.org/html/rfc7468) - PEM encoding
243243
- [RFC 7748](https://tools.ietf.org/html/rfc7748) - Curve25519 and Curve448
244-
- [SDK PIV integration tests](https://github.com/Yubico/Yubico.NET.SDK/tree/main/Yubico.YubiKey/tests/integration/Yubico/YubiKey/Piv)
244+
- [SDK PIV integration tests](https://github.com/Yubico/Yubico.NET.SDK/tree/HEAD/Yubico.YubiKey/tests/integration/Yubico/YubiKey/Piv)
245245
- SDK unit tests for additional usage examples:
246-
- [Curve25519PublicKeyTests](https://github.com/Yubico/Yubico.NET.SDK/blob/develop/Yubico.YubiKey/tests/unit/Yubico/YubiKey/Cryptography/Curve25519PublicKeyTests.cs)
247-
- [ECPublicKeyTests](https://github.com/Yubico/Yubico.NET.SDK/blob/develop/Yubico.YubiKey/tests/unit/Yubico/YubiKey/Cryptography/ECPublicKeyTests.cs)
248-
- [RSAPublicKeyTests](https://github.com/Yubico/Yubico.NET.SDK/blob/develop/Yubico.YubiKey/tests/unit/Yubico/YubiKey/Cryptography/RSAPublicKeyTests.cs)
246+
- [Curve25519PublicKeyTests](https://github.com/Yubico/Yubico.NET.SDK/blob/HEAD/Yubico.YubiKey/tests/unit/Yubico/YubiKey/Cryptography/Curve25519PublicKeyTests.cs)
247+
- [ECPublicKeyTests](https://github.com/Yubico/Yubico.NET.SDK/blob/HEAD/Yubico.YubiKey/tests/unit/Yubico/YubiKey/Cryptography/ECPublicKeyTests.cs)
248+
- [RSAPublicKeyTests](https://github.com/Yubico/Yubico.NET.SDK/blob/HEAD/Yubico.YubiKey/tests/unit/Yubico/YubiKey/Cryptography/RSAPublicKeyTests.cs)

docs/users-manual/sdk-programming-guide/pin-complexity-policy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,4 +72,4 @@ PIN complexity violations are reported for following FIDO2 operations:
7272

7373
### Example code
7474

75-
For code samples demonstrating how to handle PIN complexity violations, see the [PivSampleCode](https://github.com/Yubico/Yubico.NET.SDK/blob/main/Yubico.YubiKey/examples/PivSampleCode/KeyCollector/SampleKeyCollector.cs), [Fido2SampleCode](https://github.com/Yubico/Yubico.NET.SDK/blob/main/Yubico.YubiKey/examples/Fido2SampleCode/KeyCollector/Fido2SampleKeyCollector.cs), and [PinComplexityTests](https://github.com/Yubico/Yubico.NET.SDK/blob/main/Yubico.YubiKey/tests/integration/Yubico/YubiKey/PinComplexityTests.cs) integration tests.
75+
For code samples demonstrating how to handle PIN complexity violations, see the [PivSampleCode](https://github.com/Yubico/Yubico.NET.SDK/blob/HEAD/Yubico.YubiKey/examples/PivSampleCode/KeyCollector/SampleKeyCollector.cs), [Fido2SampleCode](https://github.com/Yubico/Yubico.NET.SDK/blob/HEAD/Yubico.YubiKey/examples/Fido2SampleCode/KeyCollector/Fido2SampleKeyCollector.cs), and [PinComplexityTests](https://github.com/Yubico/Yubico.NET.SDK/blob/HEAD/Yubico.YubiKey/tests/integration/Yubico/YubiKey/PinComplexityTests.cs) integration tests.

0 commit comments

Comments
 (0)