mbed-os-examples / Mbed OS mbed-os-example-tls-authcrypt
Committer:
mbed_official
Date:
Thu Jul 28 23:13:58 2016 +0100
Revision:
2:459c0eb21304
Child:
5:97e046e0e2b1
Update examples to use mbed-os-5.1.0-rc3.


Commit copied from ./src/github.com/ARMmbed/mbed-os-example-tls

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_official 2:459c0eb21304 1 # mbed TLS Benchmark example on mbed OS
mbed_official 2:459c0eb21304 2
mbed_official 2:459c0eb21304 3 This application performs authenticated encryption and authenticated decryption of a buffer. It serves as a tutorial for the basic authenticated encryption functions of mbed TLS.
mbed_official 2:459c0eb21304 4
mbed_official 2:459c0eb21304 5 # Getting started
mbed_official 2:459c0eb21304 6
mbed_official 2:459c0eb21304 7 Set up your environment if you have not done so already. For instructions, refer to the [main readme](../README.md).
mbed_official 2:459c0eb21304 8
mbed_official 2:459c0eb21304 9 ## Monitoring the application
mbed_official 2:459c0eb21304 10
mbed_official 2:459c0eb21304 11 The output in the terminal window should be similar to this:
mbed_official 2:459c0eb21304 12
mbed_official 2:459c0eb21304 13 ```
mbed_official 2:459c0eb21304 14 plaintext message: 536f6d65207468696e67732061726520626574746572206c65667420756e7265616400
mbed_official 2:459c0eb21304 15 ciphertext: c57f7afb94f14c7977d785d08682a2596bd62ee9dcf216b8cccd997afee9b402f5de1739e8e6467aa363749ef39392e5c66622b01c7203ec0a3d14
mbed_official 2:459c0eb21304 16 decrypted: 536f6d65207468696e67732061726520626574746572206c65667420756e7265616400
mbed_official 2:459c0eb21304 17
mbed_official 2:459c0eb21304 18 DONE
mbed_official 2:459c0eb21304 19 ```