ctx_o              94 lib/crypto/hmacmd5.c         struct MD5Context ctx_o;
ctx_o              98 lib/crypto/hmacmd5.c         MD5Init(&ctx_o);
ctx_o              99 lib/crypto/hmacmd5.c         MD5Update(&ctx_o, ctx->k_opad, 64);   
ctx_o             100 lib/crypto/hmacmd5.c         MD5Update(&ctx_o, digest, 16); 
ctx_o             101 lib/crypto/hmacmd5.c         MD5Final(digest, &ctx_o);
ctx_o              83 lib/crypto/hmacsha256.c         SHA256_CTX ctx_o;
ctx_o              87 lib/crypto/hmacsha256.c         SHA256_Init(&ctx_o);
ctx_o              88 lib/crypto/hmacsha256.c         SHA256_Update(&ctx_o, ctx->k_opad, 64);
ctx_o              89 lib/crypto/hmacsha256.c         SHA256_Update(&ctx_o, digest, SHA256_DIGEST_LENGTH);
ctx_o              90 lib/crypto/hmacsha256.c         SHA256_Final(digest, &ctx_o);