Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'pg/src/main/java/org/bouncycastle/bcpg/SymmetricKeyAlgorithmTags.java')
-rw-r--r--pg/src/main/java/org/bouncycastle/bcpg/SymmetricKeyAlgorithmTags.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/pg/src/main/java/org/bouncycastle/bcpg/SymmetricKeyAlgorithmTags.java b/pg/src/main/java/org/bouncycastle/bcpg/SymmetricKeyAlgorithmTags.java
index 92fcf10a..43b66cd2 100644
--- a/pg/src/main/java/org/bouncycastle/bcpg/SymmetricKeyAlgorithmTags.java
+++ b/pg/src/main/java/org/bouncycastle/bcpg/SymmetricKeyAlgorithmTags.java
@@ -16,4 +16,7 @@ public interface SymmetricKeyAlgorithmTags
public static final int AES_192 = 8; // Reserved for AES with 192-bit key
public static final int AES_256 = 9; // Reserved for AES with 256-bit key
public static final int TWOFISH = 10; // Reserved for Twofish
+ public static final int CAMELLIA_128 = 11; // Reserved for Camellia with 128-bit key
+ public static final int CAMELLIA_192 = 12; // Reserved for Camellia with 192-bit key
+ public static final int CAMELLIA_256 = 13; // Reserved for Camellia with 256-bit key
}