summaryrefslogtreecommitdiff
path: root/cipher/rfc2268.c
diff options
context:
space:
mode:
Diffstat (limited to 'cipher/rfc2268.c')
-rw-r--r--cipher/rfc2268.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/cipher/rfc2268.c b/cipher/rfc2268.c
index 130be9b7..da0b9f40 100644
--- a/cipher/rfc2268.c
+++ b/cipher/rfc2268.c
@@ -351,8 +351,21 @@ static gcry_cipher_oid_spec_t oids_rfc2268_40[] =
{ NULL }
};
+static gcry_cipher_oid_spec_t oids_rfc2268_128[] =
+ {
+ /* pbeWithSHAAnd128BitRC2_CBC */
+ { "1.2.840.113549.1.12.1.5", GCRY_CIPHER_MODE_CBC },
+ { NULL }
+ };
+
gcry_cipher_spec_t _gcry_cipher_spec_rfc2268_40 = {
"RFC2268_40", NULL, oids_rfc2268_40,
RFC2268_BLOCKSIZE, 40, sizeof(RFC2268_context),
do_setkey, encrypt_block, decrypt_block
};
+
+gcry_cipher_spec_t _gcry_cipher_spec_rfc2268_128 = {
+ "RFC2268_128", NULL, oids_rfc2268_128,
+ RFC2268_BLOCKSIZE, 128, sizeof(RFC2268_context),
+ do_setkey, encrypt_block, decrypt_block
+};