/src/sys/external/isc/libsodium/dist/src/libsodium/crypto_auth/hmacsha256/ |
auth_hmacsha256.c | 45 crypto_hash_sha256_init(&state->ictx); 46 crypto_hash_sha256_update(&state->ictx, key, keylen); 47 crypto_hash_sha256_final(&state->ictx, khash); 51 crypto_hash_sha256_init(&state->ictx); 56 crypto_hash_sha256_update(&state->ictx, pad, 64); 75 crypto_hash_sha256_update(&state->ictx, in, inlen); 86 crypto_hash_sha256_final(&state->ictx, ihash);
|
/src/sys/external/isc/libsodium/dist/src/libsodium/crypto_auth/hmacsha512/ |
auth_hmacsha512.c | 45 crypto_hash_sha512_init(&state->ictx); 46 crypto_hash_sha512_update(&state->ictx, key, keylen); 47 crypto_hash_sha512_final(&state->ictx, khash); 51 crypto_hash_sha512_init(&state->ictx); 56 crypto_hash_sha512_update(&state->ictx, pad, 128); 75 crypto_hash_sha512_update(&state->ictx, in, inlen); 86 crypto_hash_sha512_final(&state->ictx, ihash);
|
/src/sys/external/isc/libsodium/dist/src/libsodium/include/sodium/ |
crypto_auth_hmacsha256.h | 39 crypto_hash_sha256_state ictx; member in struct:crypto_auth_hmacsha256_state
|
crypto_auth_hmacsha512.h | 39 crypto_hash_sha512_state ictx; member in struct:crypto_auth_hmacsha512_state
|
/src/sys/dev/i2o/ |
iop.c | 80 #define IOP_ICTXHASH(ictx) (&iop_ictxhashtbl[(ictx) & iop_ictxhash]) 1422 iop_simple_cmd(struct iop_softc *sc, int tid, int function, int ictx, 1434 mf.msgictx = ictx; 1616 u_int off, ictx, tctx, status, size; local in function:iop_handle_reply 1634 ictx = le32toh(rb->msgictx); 1635 if (ictx == IOP_ICTX) 1638 ii = LIST_FIRST(IOP_ICTXHASH(ictx)); 1640 if (ii->ii_ictx == ictx) 1646 aprint_error_dev(sc->sc_dev, "WARNING: bad ictx returned (%x)\n" [all...] |