Skip to content
This repository has been archived by the owner on Dec 18, 2020. It is now read-only.

Commit

Permalink
Removing errouneous spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
innovationhub-asia committed Dec 11, 2017
1 parent 941b67e commit ef976ea
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,19 @@ public class VaultCreateKeyRequest {
/**
* ECDSA using the P-256 elliptic curve (asymmetric)
*/
public static final String TYPE_ACDSA_P256 = "ecdsa-p256 ";
public static final String TYPE_ACDSA_P256 = "ecdsa-p256";
/**
* ED25519 (asymmetric, supports derivation)
*/
public static final String TYPE_ED25519 = "ed25519 ";
public static final String TYPE_ED25519 = "ed25519";
/**
* RSA with bit size of 2048 (asymmetric)
*/
public static final String TYPE_RSA_2048 = "rsa-2048 ";
public static final String TYPE_RSA_2048 = "rsa-2048";
/**
* RSA with bit size of 4096 (asymmetric)
*/
public static final String TYPE_RSA_4096 = "rsa-4096 ";
public static final String TYPE_RSA_4096 = "rsa-4096";

private boolean convergentEncryption;
private boolean derived;
Expand Down

0 comments on commit ef976ea

Please sign in to comment.