Skip to content
Snippets Groups Projects
Commit 5404b865 authored by Justin Quick's avatar Justin Quick
Browse files

bytes for everything in encoding tests

parent 9175ad00
No related branches found
No related tags found
No related merge requests found
......@@ -17,8 +17,8 @@ import nacl.encoding
import nacl.secret
KEY = "1" * nacl.secret.SecretBox.KEY_SIZE
NONCE = "1" * nacl.secret.SecretBox.NONCE_SIZE
KEY = b"1" * nacl.secret.SecretBox.KEY_SIZE
NONCE = b"1" * nacl.secret.SecretBox.NONCE_SIZE
TEXT = b"The quick brown fox jumps over the lazy dog"
VECTORS = [
# Encoder, Ciphertext
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment