diff options
author | Raimo Niskanen <[email protected]> | 2016-10-04 15:13:31 +0200 |
---|---|---|
committer | Raimo Niskanen <[email protected]> | 2016-10-04 15:13:31 +0200 |
commit | 0456461c18e17cdc42b0a3a10d8a2203ee0abfcf (patch) | |
tree | 3337096765f02d097f5f5c182282010dc2ad1c87 /lib/crypto/test | |
parent | f98390d5100bf340bce2ede86be02955419f2c0a (diff) | |
parent | 6b4cf6c5759d1f1f952708ab191f563175950aa0 (diff) | |
download | otp-0456461c18e17cdc42b0a3a10d8a2203ee0abfcf.tar.gz otp-0456461c18e17cdc42b0a3a10d8a2203ee0abfcf.tar.bz2 otp-0456461c18e17cdc42b0a3a10d8a2203ee0abfcf.zip |
Merge branch 'legoscia/crypto/no-rc2/PR-1163/OTP-13895' into maint
* legoscia/crypto/no-rc2/PR-1163/OTP-13895:
Fix compilation when OpenSSL doesn't support RC2
Diffstat (limited to 'lib/crypto/test')
-rw-r--r-- | lib/crypto/test/old_crypto_SUITE.erl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/crypto/test/old_crypto_SUITE.erl b/lib/crypto/test/old_crypto_SUITE.erl index 4a6753b2ed..10a3e52f29 100644 --- a/lib/crypto/test/old_crypto_SUITE.erl +++ b/lib/crypto/test/old_crypto_SUITE.erl @@ -1080,7 +1080,9 @@ rc2_cbc(doc) -> "Encrypt and decrypt according to RC2 CBC and check the result. " "Example stripped out from public_key application test"; rc2_cbc(Config) when is_list(Config) -> - + if_supported(rc2_cbc, fun rc2_cbc_do/0). + +rc2_cbc_do() -> Key = <<146,210,160,124,215,227,153,239,227,17,222,140,3,93,27,191>>, IV = <<72,91,135,182,25,42,35,210>>, |