Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix incorrect comments. #12754

Merged
merged 3 commits into from
Jul 10, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,27 +15,27 @@
public final class KeyWrapAlgorithm extends ExpandableStringEnum<KeyWrapAlgorithm> {

/**
* Static value Encrypt for KeyWrapAlgorithm.
* Static value RSA-OAEP for KeyWrapAlgorithm.
*/
public static final KeyWrapAlgorithm RSA_OAEP = fromString("RSA-OAEP");

/**
* Static value Decrypt for KeyWrapAlgorithm.
* Static value RSA-OAEP-256 for KeyWrapAlgorithm.
*/
public static final KeyWrapAlgorithm RSA_OAEP_256 = fromString("RSA-OAEP-256");

/**
* Static value Sign for KeyWrapAlgorithm.
* Static value RSA1_5 for KeyWrapAlgorithm.
*/
public static final KeyWrapAlgorithm RSA1_5 = fromString("RSA1_5");

/**
* Static value Verify for KeyWrapAlgorithm.
* Static value A192KW for KeyWrapAlgorithm.
*/
public static final KeyWrapAlgorithm A192KW = fromString("A192KW");

/**
* Static value Wrap Key for KeyWrapAlgorithm.
* Static value A128KW for KeyWrapAlgorithm.
*/
public static final KeyWrapAlgorithm A128KW = fromString("A128KW");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,52 +15,52 @@
public final class SignatureAlgorithm extends ExpandableStringEnum<SignatureAlgorithm> {

/**
* Static value RSA_OAEP for SignatureAlgorithm.
* Static value PS256 for SignatureAlgorithm.
*/
public static final SignatureAlgorithm PS256 = fromString("PS256");

/**
* Static value RSA_OAEP_256 for SignatureAlgorithm.
* Static value PS384 for SignatureAlgorithm.
*/
public static final SignatureAlgorithm PS384 = fromString("PS384");

/**
* Static value RSA1_5 for SignatureAlgorithm.
* Static value PS512 for SignatureAlgorithm.
*/
public static final SignatureAlgorithm PS512 = fromString("PS512");

/**
* Static value A256CBC_HS512 for SignatureAlgorithm.
* Static value RS256 for SignatureAlgorithm.
*/
public static final SignatureAlgorithm RS256 = fromString("RS256");

/**
* Static value A128CBC_HS256 for SignatureAlgorithm.
* Static value RS384 for SignatureAlgorithm.
*/
public static final SignatureAlgorithm RS384 = fromString("RS384");

/**
* Static value A192CBC_HS384 for SignatureAlgorithm.
* Static value RS512 for SignatureAlgorithm.
*/
public static final SignatureAlgorithm RS512 = fromString("RS512");

/**
* Static value A256CBC for SignatureAlgorithm.
* Static value ES256 for SignatureAlgorithm.
*/
public static final SignatureAlgorithm ES256 = fromString("ES256");

/**
* Static value A192CBC for SignatureAlgorithm.
* Static value ES384 for SignatureAlgorithm.
*/
public static final SignatureAlgorithm ES384 = fromString("ES384");

/**
* Static value A128CBC for SignatureAlgorithm.
* Static value ES512 for SignatureAlgorithm.
*/
public static final SignatureAlgorithm ES512 = fromString("ES512");

/**
* Static value A128CBC for SignatureAlgorithm.
* Static value ES256K for SignatureAlgorithm.
*/
public static final SignatureAlgorithm ES256K = fromString("ES256K");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,27 +15,27 @@
public final class KeyType extends ExpandableStringEnum<KeyType> {

/**
* Static value Encrypt for KeyType.
* Static value EC for KeyType.
*/
public static final KeyType EC = fromString("EC");
saurabh500 marked this conversation as resolved.
Show resolved Hide resolved

/**
* Static value Decrypt for KeyType.
* Static value EC-HSM for KeyType.
*/
public static final KeyType EC_HSM = fromString("EC-HSM");

/**
* Static value Sign for KeyType.
* Static value RSA for KeyType.
*/
public static final KeyType RSA = fromString("RSA");

/**
* Static value Verify for KeyType.
* Static value RSA-HSM for KeyType.
*/
public static final KeyType RSA_HSM = fromString("RSA-HSM");

/**
* Static value Wrap Key for KeyType.
* Static value oct for KeyType.
*/
public static final KeyType OCT = fromString("oct");

Expand Down