sodium.cr/spec/sodium/cipher/chalsa_spec.cr

23 lines
715 B
Crystal
Raw Normal View History

2019-06-27 22:52:09 +02:00
require "../../spec_helper"
require "../../../src/sodium/cipher/chalsa"
2019-06-27 22:52:09 +02:00
{% for name in %w(XSalsa20 Salsa20 XChaCha20 ChaCha20Ietf ChaCha20) %}
# TODO: verify against test vectors.
describe Sodium::Cipher::{{ name.id }} do
2019-06-27 22:52:09 +02:00
it "xors" do
data = Bytes.new(100)
cipher1 = Sodium::Cipher::{{ name.id }}.new
cipher2 = Sodium::Cipher::{{ name.id }}.new
2019-06-27 22:52:09 +02:00
key = cipher1.random_key
nonce = cipher1.random_nonce
output = cipher1.update data
cipher1.update(data).should_not eq output # Verify offset is incremented.
cipher1.final.should eq Bytes.new(0)
cipher2.key = key
cipher2.nonce = nonce
cipher2.update(output).should eq data
end
end
{% end %}