HomeSort by relevance Sort by last modified time
    Searched defs:ocb (Results 1 - 3 of 3) sorted by null

  /external/dropbear/libtomcrypt/src/encauth/ocb/
ocb_decrypt_verify_memory.c 14 OCB implementation, helper to decrypt block of memory, by Tom St Denis
21 Decrypt and compare the tag with OCB.
43 ocb_state *ocb; local
53 ocb = XMALLOC(sizeof(ocb_state));
54 if (ocb == NULL) {
58 if ((err = ocb_init(ocb, cipher, key, keylen, nonce)) != CRYPT_OK) {
62 while (ctlen > (unsigned long)ocb->block_len) {
63 if ((err = ocb_decrypt(ocb, ct, pt)) != CRYPT_OK) {
66 ctlen -= ocb->block_len;
67 pt += ocb->block_len
    [all...]
ocb_encrypt_authenticate_memory.c 14 OCB implementation, encrypt block of memory, by Tom St Denis
41 ocb_state *ocb; local
51 ocb = XMALLOC(sizeof(ocb_state));
52 if (ocb == NULL) {
56 if ((err = ocb_init(ocb, cipher, key, keylen, nonce)) != CRYPT_OK) {
60 while (ptlen > (unsigned long)ocb->block_len) {
61 if ((err = ocb_encrypt(ocb, pt, ct)) != CRYPT_OK) {
64 ptlen -= ocb->block_len;
65 pt += ocb->block_len;
66 ct += ocb->block_len
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ecf_3.1.0.v20100529-0735.jar 

Completed in 646 milliseconds