diff options
author | Sverker Eriksson <[email protected]> | 2011-09-06 14:41:26 +0200 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2011-10-18 15:36:33 +0200 |
commit | f8f2b8fbf9c19e582b21bb701d38f8fb769821e8 (patch) | |
tree | 48028aec32aa557187b0d7873b091af3288aa6c3 /lib/crypto | |
parent | f0db3eff30b298e765a9af78a86f4865cad21da8 (diff) | |
download | otp-f8f2b8fbf9c19e582b21bb701d38f8fb769821e8.tar.gz otp-f8f2b8fbf9c19e582b21bb701d38f8fb769821e8.tar.bz2 otp-f8f2b8fbf9c19e582b21bb701d38f8fb769821e8.zip |
[crypto] Remove swedish characters from test code
Diffstat (limited to 'lib/crypto')
-rw-r--r-- | lib/crypto/test/crypto_SUITE.erl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/crypto/test/crypto_SUITE.erl b/lib/crypto/test/crypto_SUITE.erl index b86575ad21..21df8b5526 100644 --- a/lib/crypto/test/crypto_SUITE.erl +++ b/lib/crypto/test/crypto_SUITE.erl @@ -1323,8 +1323,8 @@ rc4_test(doc) -> rc4_test(suite) -> []; rc4_test(Config) when is_list(Config) -> - CT1 = <<"hej p� dig">>, - R1 = <<71,112,14,44,140,33,212,144,155,47>>, + CT1 = <<"Yo baby yo">>, + R1 = <<118,122,68,110,157,166,141,212,139,39>>, K = "apaapa", R1 = crypto:rc4_encrypt(K, CT1), CT1 = crypto:rc4_encrypt(K, R1), @@ -1338,14 +1338,14 @@ rc4_stream_test(doc) -> rc4_stream_test(suite) -> []; rc4_stream_test(Config) when is_list(Config) -> - CT1 = <<"hej">>, - CT2 = <<" p� dig">>, + CT1 = <<"Yo ">>, + CT2 = <<"baby yo">>, K = "apaapa", State0 = crypto:rc4_set_key(K), {State1, R1} = crypto:rc4_encrypt_with_state(State0, CT1), {_State2, R2} = crypto:rc4_encrypt_with_state(State1, CT2), R = list_to_binary([R1, R2]), - <<71,112,14,44,140,33,212,144,155,47>> = R, + <<118,122,68,110,157,166,141,212,139,39>> = R, ok. blowfish_cfb64(doc) -> ["Test Blowfish encrypt/decrypt."]; |