Skip to content

Commit 3bd7b4b

Browse files
committed
deprecated mispelt field, added correct one. Relates to github #2158
1 parent 7098ad4 commit 3bd7b4b

File tree

1 file changed

+4
-0
lines changed
  • core/src/main/java/org/bouncycastle/crypto/hpke

1 file changed

+4
-0
lines changed

core/src/main/java/org/bouncycastle/crypto/hpke/HPKE.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,11 @@ public class HPKE
1717

1818
// kems
1919
public static final short kem_P256_SHA256 = 16;
20+
/**
21+
* @deprecated use kem_P384_SHA384
22+
*/
2023
public static final short kem_P384_SHA348 = 17;
24+
public static final short kem_P384_SHA384 = 17;
2125
public static final short kem_P521_SHA512 = 18;
2226
public static final short kem_X25519_SHA256 = 32;
2327
public static final short kem_X448_SHA512 = 33;

0 commit comments

Comments
 (0)