Skip to content

Commit d6c5231

Browse files
committed
Update rfc reference
1 parent 4bd7012 commit d6c5231

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

pg/src/main/java/org/bouncycastle/bcpg/PacketTags.java

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public interface PacketTags
1212
* Packet class: {@link PublicKeyEncSessionPacket}
1313
* Business logic: {@link org.bouncycastle.openpgp.PGPPublicKeyEncryptedData}
1414
*
15-
* @see <a href="https://www.ietf.org/archive/id/draft-ietf-openpgp-crypto-refresh-13.html#name-public-key-encrypted-sessio">
15+
* @see <a href="https://www.rfc-editor.org/rfc/rfc9580.html#name-public-key-encrypted-sessio">
1616
* Public-Key Encrypted Session Key Packet</a>
1717
*/
1818
int PUBLIC_KEY_ENC_SESSION = 1; // Public-Key Encrypted Session Key Packet
@@ -22,7 +22,7 @@ public interface PacketTags
2222
* Packet class: {@link SignaturePacket}
2323
* Business logic: {@link org.bouncycastle.openpgp.PGPSignature}
2424
*
25-
* @see <a href="https://www.ietf.org/archive/id/draft-ietf-openpgp-crypto-refresh-13.html#name-signature-packet-type-id-2">
25+
* @see <a href="https://www.rfc-editor.org/rfc/rfc9580.html#name-signature-packet-type-id-2">
2626
* Signature Packet</a>
2727
*/
2828
int SIGNATURE = 2; // Signature Packet
@@ -32,7 +32,7 @@ public interface PacketTags
3232
* Packet class: {@link SymmetricKeyEncSessionPacket}
3333
* Business logic: {@link org.bouncycastle.openpgp.PGPSymmetricKeyEncryptedData}
3434
*
35-
* @see <a href="https://www.ietf.org/archive/id/draft-ietf-openpgp-crypto-refresh-13.html#name-symmetric-key-encrypted-ses">
35+
* @see <a href="https://www.rfc-editor.org/rfc/rfc9580.html#name-symmetric-key-encrypted-ses">
3636
* Symmetric-Key Encrypted Session-Key Packet</a>
3737
*/
3838
int SYMMETRIC_KEY_ENC_SESSION = 3; // Symmetric-Key Encrypted Session Key Packet
@@ -43,7 +43,7 @@ public interface PacketTags
4343
* Business logic: {@link org.bouncycastle.openpgp.PGPOnePassSignature},
4444
* {@link org.bouncycastle.openpgp.PGPOnePassSignatureList}
4545
*
46-
* @see <a href="https://www.ietf.org/archive/id/draft-ietf-openpgp-crypto-refresh-13.html#name-one-pass-signature-packet-t">
46+
* @see <a href="https://www.rfc-editor.org/rfc/rfc9580.html#name-one-pass-signature-packet-t">
4747
* One-Pass-Signature Packet</a>
4848
*/
4949
int ONE_PASS_SIGNATURE = 4 ; // One-Pass Signature Packet
@@ -53,7 +53,7 @@ public interface PacketTags
5353
* Packet class: {@link SecretKeyPacket}
5454
* Business logic: {@link org.bouncycastle.openpgp.PGPSecretKey}
5555
*
56-
* @see <a href="https://www.ietf.org/archive/id/draft-ietf-openpgp-crypto-refresh-13.html#name-secret-key-packet-type-id-5">
56+
* @see <a href="https://www.rfc-editor.org/rfc/rfc9580.html#name-secret-key-packet-type-id-5">
5757
* Secret-Key Packet</a>
5858
*/
5959
int SECRET_KEY = 5; // Secret Key Packet
@@ -63,7 +63,7 @@ public interface PacketTags
6363
* Packet class: {@link PublicKeyPacket}
6464
* Business logic: {@link org.bouncycastle.openpgp.PGPPublicKey}
6565
*
66-
* @see <a href="https://www.ietf.org/archive/id/draft-ietf-openpgp-crypto-refresh-13.html#name-public-key-packet-type-id-6">
66+
* @see <a href="https://www.rfc-editor.org/rfc/rfc9580.html#name-public-key-packet-type-id-6">
6767
* Public-Key Packet</a>
6868
*/
6969
int PUBLIC_KEY = 6 ; // Public Key Packet
@@ -73,7 +73,7 @@ public interface PacketTags
7373
* Packet class: {@link SecretSubkeyPacket}
7474
* Business logic: {@link org.bouncycastle.openpgp.PGPSecretKey}
7575
*
76-
* @see <a href="https://www.ietf.org/archive/id/draft-ietf-openpgp-crypto-refresh-13.html#name-secret-subkey-packet-type-i">
76+
* @see <a href="https://www.rfc-editor.org/rfc/rfc9580.html#name-secret-subkey-packet-type-i">
7777
* Secret-Subkey Packet</a>
7878
*/
7979
int SECRET_SUBKEY = 7; // Secret Subkey Packet
@@ -83,7 +83,7 @@ public interface PacketTags
8383
* Packet class: {@link CompressedDataPacket}
8484
* Business logic: {@link org.bouncycastle.openpgp.PGPCompressedData}
8585
*
86-
* @see <a href="https://www.ietf.org/archive/id/draft-ietf-openpgp-crypto-refresh-13.html#name-compressed-data-packet-type">
86+
* @see <a href="https://www.rfc-editor.org/rfc/rfc9580.html#name-compressed-data-packet-type">
8787
* Compressed Data Packet</a>
8888
*/
8989
int COMPRESSED_DATA = 8; // Compressed Data Packet
@@ -94,7 +94,7 @@ public interface PacketTags
9494
* Business logic: {@link org.bouncycastle.openpgp.PGPSymmetricKeyEncryptedData}
9595
* Note: This encrypted data packet in favor of {@link #SYM_ENC_INTEGRITY_PRO}.
9696
*
97-
* @see <a href="https://www.ietf.org/archive/id/draft-ietf-openpgp-crypto-refresh-13.html#name-symmetrically-encrypted-dat">
97+
* @see <a href="https://www.rfc-editor.org/rfc/rfc9580.html#name-symmetrically-encrypted-dat">
9898
* Symmetrically Encrypted Data Packet</a>
9999
*/
100100
int SYMMETRIC_KEY_ENC = 9; // Symmetrically Encrypted Data Packet
@@ -105,7 +105,7 @@ public interface PacketTags
105105
* Business logic: {@link org.bouncycastle.openpgp.PGPMarker}
106106
* This packet is deprecated and MUST be ignored.
107107
*
108-
* @see <a href="https://www.ietf.org/archive/id/draft-ietf-openpgp-crypto-refresh-13.html#name-marker-packet-type-id-10">
108+
* @see <a href="https://www.rfc-editor.org/rfc/rfc9580.html#name-marker-packet-type-id-10">
109109
* Marker Packet</a>
110110
*/
111111
int MARKER = 10; // Marker Packet
@@ -115,7 +115,7 @@ public interface PacketTags
115115
* Packet class: {@link LiteralDataPacket}
116116
* Business logic: {@link org.bouncycastle.openpgp.PGPLiteralData}
117117
*
118-
* @see <a href="https://www.ietf.org/archive/id/draft-ietf-openpgp-crypto-refresh-13.html#name-literal-data-packet-type-id">
118+
* @see <a href="https://www.rfc-editor.org/rfc/rfc9580.html#name-literal-data-packet-type-id">
119119
* Literal Data Packet</a>
120120
*/
121121
int LITERAL_DATA = 11; // Literal Data Packet
@@ -125,7 +125,7 @@ public interface PacketTags
125125
* Packet class: {@link TrustPacket}
126126
* This class has no dedicated business logic implementation.
127127
*
128-
* @see <a href="https://www.ietf.org/archive/id/draft-ietf-openpgp-crypto-refresh-13.html#name-trust-packet-type-id-12">
128+
* @see <a href="https://www.rfc-editor.org/rfc/rfc9580.html#name-trust-packet-type-id-12">
129129
* Trust Packet</a>
130130
*/
131131
int TRUST = 12; // Trust Packet
@@ -134,7 +134,7 @@ public interface PacketTags
134134
* User ID Packet.
135135
* Packet class: {@link UserIDPacket}
136136
*
137-
* @see <a href="https://www.ietf.org/archive/id/draft-ietf-openpgp-crypto-refresh-13.html#name-user-id-packet-type-id-13">
137+
* @see <a href="https://www.rfc-editor.org/rfc/rfc9580.html#name-user-id-packet-type-id-13">
138138
* User ID Packet</a>
139139
*/
140140
int USER_ID = 13; // User ID Packet
@@ -144,7 +144,7 @@ public interface PacketTags
144144
* Packet class: {@link PublicSubkeyPacket}
145145
* Business logic: {@link org.bouncycastle.openpgp.PGPPublicKey}
146146
*
147-
* @see <a href="https://www.ietf.org/archive/id/draft-ietf-openpgp-crypto-refresh-13.html#name-public-subkey-packet-type-i">
147+
* @see <a href="https://www.rfc-editor.org/rfc/rfc9580.html#name-public-subkey-packet-type-i">
148148
* Public-Subkey Packet</a>
149149
*/
150150
int PUBLIC_SUBKEY = 14; // Public Subkey Packet
@@ -154,7 +154,7 @@ public interface PacketTags
154154
* Packet class: {@link UserAttributePacket}
155155
* Business logic: {@link org.bouncycastle.openpgp.PGPUserAttributeSubpacketVector}
156156
*
157-
* @see <a href="https://www.ietf.org/archive/id/draft-ietf-openpgp-crypto-refresh-13.html#name-user-attribute-packet-type-">
157+
* @see <a href="https://www.rfc-editor.org/rfc/rfc9580.html#name-user-attribute-packet-type-">
158158
* User Attribute Packet</a>
159159
*/
160160
int USER_ATTRIBUTE = 17; // User attribute
@@ -164,7 +164,7 @@ public interface PacketTags
164164
* Packet class: {@link SymmetricEncIntegrityPacket}
165165
* Business logic: {@link org.bouncycastle.openpgp.PGPSymmetricKeyEncryptedData}
166166
*
167-
* @see <a href="https://www.ietf.org/archive/id/draft-ietf-openpgp-crypto-refresh-13.html#name-symmetrically-encrypted-int">
167+
* @see <a href="https://www.rfc-editor.org/rfc/rfc9580.html#name-symmetrically-encrypted-int">
168168
* Symmetrically Encrypted Integrity Protected Data Packet</a>
169169
*/
170170
int SYM_ENC_INTEGRITY_PRO = 18; // Symmetric encrypted, integrity protected
@@ -173,7 +173,7 @@ public interface PacketTags
173173
* Modification Detection Code Packet.
174174
* This is no longer a stand-alone packet and has been integrated into the {@link #SYM_ENC_INTEGRITY_PRO}.
175175
*
176-
* @see <a href="https://www.ietf.org/archive/id/draft-ietf-openpgp-crypto-refresh-13.html#name-terminology-changes">
176+
* @see <a href="https://www.rfc-editor.org/rfc/rfc9580.html#name-terminology-changes">
177177
* Terminology Changes</a>
178178
*/
179179
int MOD_DETECTION_CODE = 19; // Modification detection code
@@ -194,7 +194,7 @@ public interface PacketTags
194194
* Packet class: {@link PaddingPacket}
195195
* Business logic: {@link org.bouncycastle.openpgp.PGPPadding}
196196
*
197-
* @see <a href="https://www.ietf.org/archive/id/draft-ietf-openpgp-crypto-refresh-13.html#name-padding-packet-type-id-21">
197+
* @see <a href="https://www.rfc-editor.org/rfc/rfc9580.html#name-padding-packet-type-id-21">
198198
* Padding Packet</a>
199199
*/
200200
int PADDING = 21; // Padding Packet

0 commit comments

Comments
 (0)