Home
last modified time | relevance | path

Searched refs:octets_in_msg (Results 1 – 20 of 20) sorted by relevance

/dports/net/freeswitch/freeswitch-1.10.3.-release/libs/srtp/crypto/include/
H A Dsha1.h96 int octets_in_msg) in srtp_sha1_update() argument
98 EVP_DigestUpdate(ctx, M, octets_in_msg); in srtp_sha1_update()
121 int octets_in_msg)
123 EVP_DigestUpdate(*ctx, M, octets_in_msg);
158 int octets_in_msg);
/dports/net/pjsip/pjproject-2.11.1/third_party/srtp/crypto/include/
H A Dsha1.h94 static inline void srtp_sha1_update (srtp_sha1_ctx_t *ctx, const uint8_t *M, int octets_in_msg) in srtp_sha1_update() argument
96 EVP_DigestUpdate(ctx, M, octets_in_msg); in srtp_sha1_update()
117 static inline void srtp_sha1_update (srtp_sha1_ctx_t *ctx, const uint8_t *M, int octets_in_msg)
119 EVP_DigestUpdate(*ctx, M, octets_in_msg);
153 void srtp_sha1_update(srtp_sha1_ctx_t *ctx, const uint8_t *M, int octets_in_msg);
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/libsrtp/src/crypto/include/
H A Dsha1.h96 int octets_in_msg) in srtp_sha1_update() argument
98 EVP_DigestUpdate(ctx, M, octets_in_msg); in srtp_sha1_update()
121 int octets_in_msg)
123 EVP_DigestUpdate(*ctx, M, octets_in_msg);
158 int octets_in_msg);
/dports/lang/spidermonkey60/firefox-60.9.0/netwerk/srtp/src/crypto/include/
H A Dsha1.h96 int octets_in_msg) in srtp_sha1_update() argument
98 EVP_DigestUpdate(ctx, M, octets_in_msg); in srtp_sha1_update()
121 int octets_in_msg)
123 EVP_DigestUpdate(*ctx, M, octets_in_msg);
158 int octets_in_msg);
/dports/www/firefox-esr/firefox-91.8.0/third_party/libsrtp/src/crypto/include/
H A Dsha1.h96 int octets_in_msg) in srtp_sha1_update() argument
98 EVP_DigestUpdate(ctx, M, octets_in_msg); in srtp_sha1_update()
121 int octets_in_msg)
123 EVP_DigestUpdate(*ctx, M, octets_in_msg);
158 int octets_in_msg);
/dports/lang/spidermonkey78/firefox-78.9.0/netwerk/srtp/src/crypto/include/
H A Dsha1.h96 int octets_in_msg) in srtp_sha1_update() argument
98 EVP_DigestUpdate(ctx, M, octets_in_msg); in srtp_sha1_update()
121 int octets_in_msg)
123 EVP_DigestUpdate(*ctx, M, octets_in_msg);
158 int octets_in_msg);
/dports/net/freeswitch/freeswitch-1.10.3.-release/libs/srtp/crypto/hash/
H A Dsha1.c79 void srtp_sha1(const uint8_t *msg, int octets_in_msg, uint32_t hash_value[5]) in srtp_sha1() argument
84 srtp_sha1_update(&ctx, msg, octets_in_msg); in srtp_sha1()
241 int octets_in_msg) in srtp_sha1_update() argument
247 ctx->num_bits_in_msg += octets_in_msg * 8; in srtp_sha1_update()
250 while (octets_in_msg > 0) { in srtp_sha1_update()
251 if (octets_in_msg + ctx->octets_in_buffer >= 64) { in srtp_sha1_update()
256 octets_in_msg -= (64 - ctx->octets_in_buffer); in srtp_sha1_update()
274 i < (ctx->octets_in_buffer + octets_in_msg); i++) { in srtp_sha1_update()
277 ctx->octets_in_buffer += octets_in_msg; in srtp_sha1_update()
278 octets_in_msg = 0; in srtp_sha1_update()
/dports/net/pjsip/pjproject-2.11.1/third_party/srtp/crypto/hash/
H A Dsha1.c79 void srtp_sha1 (const uint8_t *msg, int octets_in_msg, uint32_t hash_value[5]) in srtp_sha1() argument
84 srtp_sha1_update(&ctx, msg, octets_in_msg); in srtp_sha1()
206 void srtp_sha1_update (srtp_sha1_ctx_t *ctx, const uint8_t *msg, int octets_in_msg) in srtp_sha1_update() argument
212 ctx->num_bits_in_msg += octets_in_msg * 8; in srtp_sha1_update()
215 while (octets_in_msg > 0) { in srtp_sha1_update()
217 if (octets_in_msg + ctx->octets_in_buffer >= 64) { in srtp_sha1_update()
223 octets_in_msg -= (64 - ctx->octets_in_buffer); in srtp_sha1_update()
240 i < (ctx->octets_in_buffer + octets_in_msg); i++) { in srtp_sha1_update()
243 ctx->octets_in_buffer += octets_in_msg; in srtp_sha1_update()
244 octets_in_msg = 0; in srtp_sha1_update()
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/libsrtp/src/crypto/hash/
H A Dsha1.c79 void srtp_sha1(const uint8_t *msg, int octets_in_msg, uint32_t hash_value[5]) in srtp_sha1() argument
84 srtp_sha1_update(&ctx, msg, octets_in_msg); in srtp_sha1()
241 int octets_in_msg) in srtp_sha1_update() argument
247 ctx->num_bits_in_msg += octets_in_msg * 8; in srtp_sha1_update()
250 while (octets_in_msg > 0) { in srtp_sha1_update()
251 if (octets_in_msg + ctx->octets_in_buffer >= 64) { in srtp_sha1_update()
256 octets_in_msg -= (64 - ctx->octets_in_buffer); in srtp_sha1_update()
274 i < (ctx->octets_in_buffer + octets_in_msg); i++) { in srtp_sha1_update()
277 ctx->octets_in_buffer += octets_in_msg; in srtp_sha1_update()
278 octets_in_msg = 0; in srtp_sha1_update()
/dports/lang/spidermonkey60/firefox-60.9.0/netwerk/srtp/src/crypto/hash/
H A Dsha1.c79 void srtp_sha1(const uint8_t *msg, int octets_in_msg, uint32_t hash_value[5]) in srtp_sha1() argument
84 srtp_sha1_update(&ctx, msg, octets_in_msg); in srtp_sha1()
241 int octets_in_msg) in srtp_sha1_update() argument
247 ctx->num_bits_in_msg += octets_in_msg * 8; in srtp_sha1_update()
250 while (octets_in_msg > 0) { in srtp_sha1_update()
251 if (octets_in_msg + ctx->octets_in_buffer >= 64) { in srtp_sha1_update()
256 octets_in_msg -= (64 - ctx->octets_in_buffer); in srtp_sha1_update()
274 i < (ctx->octets_in_buffer + octets_in_msg); i++) { in srtp_sha1_update()
277 ctx->octets_in_buffer += octets_in_msg; in srtp_sha1_update()
278 octets_in_msg = 0; in srtp_sha1_update()
/dports/www/firefox-legacy/firefox-52.8.0esr/netwerk/srtp/src/crypto/hash/
H A Dsha1.c77 sha1(const uint8_t *msg, int octets_in_msg, uint32_t hash_value[5]) { in sha1() argument
81 sha1_update(&ctx, msg, octets_in_msg); in sha1()
204 sha1_update(sha1_ctx_t *ctx, const uint8_t *msg, int octets_in_msg) { in sha1_update() argument
209 ctx->num_bits_in_msg += octets_in_msg * 8; in sha1_update()
212 while (octets_in_msg > 0) { in sha1_update()
214 if (octets_in_msg + ctx->octets_in_buffer >= 64) { in sha1_update()
220 octets_in_msg -= (64 - ctx->octets_in_buffer); in sha1_update()
236 i < (ctx->octets_in_buffer + octets_in_msg); i++) in sha1_update()
238 ctx->octets_in_buffer += octets_in_msg; in sha1_update()
239 octets_in_msg = 0; in sha1_update()
/dports/www/firefox-esr/firefox-91.8.0/third_party/libsrtp/src/crypto/hash/
H A Dsha1.c79 void srtp_sha1(const uint8_t *msg, int octets_in_msg, uint32_t hash_value[5]) in srtp_sha1() argument
84 srtp_sha1_update(&ctx, msg, octets_in_msg); in srtp_sha1()
241 int octets_in_msg) in srtp_sha1_update() argument
247 ctx->num_bits_in_msg += octets_in_msg * 8; in srtp_sha1_update()
250 while (octets_in_msg > 0) { in srtp_sha1_update()
251 if (octets_in_msg + ctx->octets_in_buffer >= 64) { in srtp_sha1_update()
256 octets_in_msg -= (64 - ctx->octets_in_buffer); in srtp_sha1_update()
274 i < (ctx->octets_in_buffer + octets_in_msg); i++) { in srtp_sha1_update()
277 ctx->octets_in_buffer += octets_in_msg; in srtp_sha1_update()
278 octets_in_msg = 0; in srtp_sha1_update()
/dports/lang/spidermonkey78/firefox-78.9.0/netwerk/srtp/src/crypto/hash/
H A Dsha1.c79 void srtp_sha1(const uint8_t *msg, int octets_in_msg, uint32_t hash_value[5]) in srtp_sha1() argument
84 srtp_sha1_update(&ctx, msg, octets_in_msg); in srtp_sha1()
241 int octets_in_msg) in srtp_sha1_update() argument
247 ctx->num_bits_in_msg += octets_in_msg * 8; in srtp_sha1_update()
250 while (octets_in_msg > 0) { in srtp_sha1_update()
251 if (octets_in_msg + ctx->octets_in_buffer >= 64) { in srtp_sha1_update()
256 octets_in_msg -= (64 - ctx->octets_in_buffer); in srtp_sha1_update()
274 i < (ctx->octets_in_buffer + octets_in_msg); i++) { in srtp_sha1_update()
277 ctx->octets_in_buffer += octets_in_msg; in srtp_sha1_update()
278 octets_in_msg = 0; in srtp_sha1_update()
/dports/www/firefox/firefox-99.0/third_party/libsrtp/src/crypto/hash/
H A Dsha1.c232 int octets_in_msg) in srtp_sha1_update() argument
238 ctx->num_bits_in_msg += octets_in_msg * 8; in srtp_sha1_update()
241 while (octets_in_msg > 0) { in srtp_sha1_update()
242 if (octets_in_msg + ctx->octets_in_buffer >= 64) { in srtp_sha1_update()
247 octets_in_msg -= (64 - ctx->octets_in_buffer); in srtp_sha1_update()
264 i < (ctx->octets_in_buffer + octets_in_msg); i++) { in srtp_sha1_update()
267 ctx->octets_in_buffer += octets_in_msg; in srtp_sha1_update()
268 octets_in_msg = 0; in srtp_sha1_update()
/dports/net/libsrtp2/libsrtp-2.4.2/crypto/hash/
H A Dsha1.c232 int octets_in_msg) in srtp_sha1_update() argument
238 ctx->num_bits_in_msg += octets_in_msg * 8; in srtp_sha1_update()
241 while (octets_in_msg > 0) { in srtp_sha1_update()
242 if (octets_in_msg + ctx->octets_in_buffer >= 64) { in srtp_sha1_update()
247 octets_in_msg -= (64 - ctx->octets_in_buffer); in srtp_sha1_update()
264 i < (ctx->octets_in_buffer + octets_in_msg); i++) { in srtp_sha1_update()
267 ctx->octets_in_buffer += octets_in_msg; in srtp_sha1_update()
268 octets_in_msg = 0; in srtp_sha1_update()
/dports/www/libdatachannel/libdatachannel-0.16.1/deps/libsrtp/crypto/hash/
H A Dsha1.c232 int octets_in_msg) in srtp_sha1_update() argument
238 ctx->num_bits_in_msg += octets_in_msg * 8; in srtp_sha1_update()
241 while (octets_in_msg > 0) { in srtp_sha1_update()
242 if (octets_in_msg + ctx->octets_in_buffer >= 64) { in srtp_sha1_update()
247 octets_in_msg -= (64 - ctx->octets_in_buffer); in srtp_sha1_update()
264 i < (ctx->octets_in_buffer + octets_in_msg); i++) { in srtp_sha1_update()
267 ctx->octets_in_buffer += octets_in_msg; in srtp_sha1_update()
268 octets_in_msg = 0; in srtp_sha1_update()
/dports/www/firefox-legacy/firefox-52.8.0esr/netwerk/srtp/src/crypto/include/
H A Dsha1.h68 sha1(const uint8_t *message, int octets_in_msg, uint32_t output[5]);
85 sha1_update(sha1_ctx_t *ctx, const uint8_t *M, int octets_in_msg);
/dports/www/firefox/firefox-99.0/third_party/libsrtp/src/crypto/include/
H A Dsha1.h82 int octets_in_msg);
/dports/net/libsrtp2/libsrtp-2.4.2/crypto/include/
H A Dsha1.h82 int octets_in_msg);
/dports/www/libdatachannel/libdatachannel-0.16.1/deps/libsrtp/crypto/include/
H A Dsha1.h82 int octets_in_msg);