Lines Matching full:out
29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
76 * @param s IN/OUT -- initialized struct tc_aes_key_sched_struct
83 * Encrypts contents of in buffer into out buffer under key;
86 * out and in point to 16 byte buffers
88 * returns TC_CRYPTO_FAIL (0) if: out == NULL or in == NULL or s == NULL
89 * @param out IN/OUT -- buffer to receive ciphertext block
93 int tc_aes_encrypt(uint8_t *out, const uint8_t *in,
107 * @param s IN/OUT -- initialized struct tc_aes_key_sched_struct
114 * Decrypts in buffer into out buffer under key schedule s
116 * returns TC_CRYPTO_FAIL (0) if: out is NULL or in is NULL or s is NULL
118 * out and in point to 16 byte buffers
119 * @param out IN/OUT -- buffer to receive ciphertext block
123 int tc_aes_decrypt(uint8_t *out, const uint8_t *in,