adwnis123
Full Member level 4
Can Elliptic curves be used on Arduino DUE for text message encryption/decryption and (not just for key generation)? Is there any other solution for using fast encryption/decryption using ECC (not ECDH or ECDSA)? I have done tests with this library: http://utter.chaos.org.uk/~markt/AES-library.zip on Arduino DUE achieving the below results:
Normally can't this be accelarated with ECC?
Thank you..
COUNT = 0
KEY = 00000000000000000000000000000000
PLAINTEXT = 80000000000000000000000000000000
CIPHERTEXT = 3ad78e726c1ec02b7ebfe92b23d9ec34
Encryption time in usec:
95
COUNT = 1
KEY = 00000000000000000000000000000000
PLAINTEXT = c0000000000000000000000000000000
CIPHERTEXT = aae5939c8efdf2f04e60b9fe7117b2c2
Encryption time in usec:
95
COUNT = 2
KEY = 00000000000000000000000000000000
PLAINTEXT = e0000000000000000000000000000000
CIPHERTEXT = f031d4d74f5dcbf39daaf8ca3af6e527
Encryption time in usec:
97
COUNT = 3
KEY = 00000000000000000000000000000000
PLAINTEXT = f0000000000000000000000000000000
CIPHERTEXT = 96d9fd5cc4f07441727df0f33e401a36
Encryption time in usec:
95
Normally can't this be accelarated with ECC?
Thank you..