mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-16 17:32:06 +01:00
Convert links in javadoc to html
This commit is contained in:
parent
e42e1dc776
commit
8597286acc
6 changed files with 10 additions and 8 deletions
|
@ -28,7 +28,7 @@ public enum PublicKeyAlgorithm {
|
||||||
/**
|
/**
|
||||||
* RSA with usage encryption.
|
* RSA with usage encryption.
|
||||||
*
|
*
|
||||||
* @deprecated see https://tools.ietf.org/html/rfc4880#section-13.5
|
* @deprecated see <a href="https://tools.ietf.org/html/rfc4880#section-13.5">Deprecation notice</a>
|
||||||
*/
|
*/
|
||||||
@Deprecated
|
@Deprecated
|
||||||
RSA_ENCRYPT (PublicKeyAlgorithmTags.RSA_ENCRYPT, false, true),
|
RSA_ENCRYPT (PublicKeyAlgorithmTags.RSA_ENCRYPT, false, true),
|
||||||
|
@ -36,7 +36,7 @@ public enum PublicKeyAlgorithm {
|
||||||
/**
|
/**
|
||||||
* RSA with usage of creating signatures.
|
* RSA with usage of creating signatures.
|
||||||
*
|
*
|
||||||
* @deprecated see https://tools.ietf.org/html/rfc4880#section-13.5
|
* @deprecated see <a href="https://tools.ietf.org/html/rfc4880#section-13.5">Deprecation notice</a>
|
||||||
*/
|
*/
|
||||||
@Deprecated
|
@Deprecated
|
||||||
RSA_SIGN (PublicKeyAlgorithmTags.RSA_SIGN, true, false),
|
RSA_SIGN (PublicKeyAlgorithmTags.RSA_SIGN, true, false),
|
||||||
|
@ -71,7 +71,7 @@ public enum PublicKeyAlgorithm {
|
||||||
/**
|
/**
|
||||||
* ElGamal General.
|
* ElGamal General.
|
||||||
*
|
*
|
||||||
* @deprecated see https://tools.ietf.org/html/rfc4880#section-13.8
|
* @deprecated see <a href="https://tools.ietf.org/html/rfc4880#section-13.8">Deprecation notice</a>
|
||||||
*/
|
*/
|
||||||
@Deprecated
|
@Deprecated
|
||||||
ELGAMAL_GENERAL (PublicKeyAlgorithmTags.ELGAMAL_GENERAL, true, true),
|
ELGAMAL_GENERAL (PublicKeyAlgorithmTags.ELGAMAL_GENERAL, true, true),
|
||||||
|
|
|
@ -20,11 +20,13 @@ public interface MissingPublicKeyCallback {
|
||||||
* you may not only search for the key-id on the key rings primary key!
|
* you may not only search for the key-id on the key rings primary key!
|
||||||
*
|
*
|
||||||
* It would be super cool to provide the OpenPgp fingerprint here, but unfortunately one-pass-signatures
|
* It would be super cool to provide the OpenPgp fingerprint here, but unfortunately one-pass-signatures
|
||||||
* only contain the key id (see https://datatracker.ietf.org/doc/html/rfc4880#section-5.4)
|
* only contain the key id.
|
||||||
*
|
*
|
||||||
* @param keyId ID of the missing signing (sub)key
|
* @param keyId ID of the missing signing (sub)key
|
||||||
*
|
*
|
||||||
* @return keyring containing the key or null
|
* @return keyring containing the key or null
|
||||||
|
*
|
||||||
|
* @see <a href="https://datatracker.ietf.org/doc/html/rfc4880#section-5.4">RFC</a>
|
||||||
*/
|
*/
|
||||||
@Nullable PGPPublicKeyRing onMissingPublicKeyEncountered(@Nonnull Long keyId);
|
@Nullable PGPPublicKeyRing onMissingPublicKeyEncountered(@Nonnull Long keyId);
|
||||||
|
|
||||||
|
|
|
@ -237,7 +237,7 @@ public class PublicKeyParameterValidationUtil {
|
||||||
* Validate ElGamal public key parameters.
|
* Validate ElGamal public key parameters.
|
||||||
*
|
*
|
||||||
* Original implementation by the openpgpjs authors:
|
* Original implementation by the openpgpjs authors:
|
||||||
* https://github.com/openpgpjs/openpgpjs/blob/main/src/crypto/public_key/elgamal.js#L76-L143
|
* <a href="https://github.com/openpgpjs/openpgpjs/blob/main/src/crypto/public_key/elgamal.js#L76-L143>OpenPGP.js source</a>
|
||||||
* @param secretKey secret key
|
* @param secretKey secret key
|
||||||
* @param publicKey public key
|
* @param publicKey public key
|
||||||
* @return true if supposedly valid, false if invalid
|
* @return true if supposedly valid, false if invalid
|
||||||
|
|
|
@ -28,7 +28,7 @@ public class PGPPublicKeyRingTest {
|
||||||
* Learning test to see if BC also makes userids available on subkeys.
|
* Learning test to see if BC also makes userids available on subkeys.
|
||||||
* It does not.
|
* It does not.
|
||||||
*
|
*
|
||||||
* see also https://security.stackexchange.com/questions/92635/is-it-possible-to-assign-different-uids-to-subkeys-for-the-purpose-of-having-mul
|
* @see <a href="https://security.stackexchange.com/questions/92635/is-it-possible-to-assign-different-uids-to-subkeys-for-the-purpose-of-having-mul>Stackexchange link</a>
|
||||||
*/
|
*/
|
||||||
@Test
|
@Test
|
||||||
public void subkeysDoNotHaveUserIDsTest() throws InvalidAlgorithmParameterException, NoSuchAlgorithmException, PGPException {
|
public void subkeysDoNotHaveUserIDsTest() throws InvalidAlgorithmParameterException, NoSuchAlgorithmException, PGPException {
|
||||||
|
|
|
@ -13,7 +13,7 @@ import org.pgpainless.PGPainless;
|
||||||
* This class contains a set of slightly out of spec or weird keys.
|
* This class contains a set of slightly out of spec or weird keys.
|
||||||
* Those are used to test whether implementations behave correctly when dealing with such keys.
|
* Those are used to test whether implementations behave correctly when dealing with such keys.
|
||||||
*
|
*
|
||||||
* Original source: https://gitlab.com/sequoia-pgp/weird-keys
|
* @see <a href="https://gitlab.com/sequoia-pgp/weird-keys">Original Source</a>
|
||||||
*/
|
*/
|
||||||
public class WeirdKeys {
|
public class WeirdKeys {
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@ import org.pgpainless.util.TestAllImplementations;
|
||||||
import org.pgpainless.util.Passphrase;
|
import org.pgpainless.util.Passphrase;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Reproduce behavior of https://github.com/pgpainless/pgpainless/issues/16
|
* Reproduce behavior of <a href="https://github.com/pgpainless/pgpainless/issues/16>this issue</a>
|
||||||
* and verify that the fix is working.
|
* and verify that the fix is working.
|
||||||
*
|
*
|
||||||
* The issue is that the implementation of {@link Passphrase#emptyPassphrase()} would set the underlying
|
* The issue is that the implementation of {@link Passphrase#emptyPassphrase()} would set the underlying
|
||||||
|
|
Loading…
Reference in a new issue