Skip to main content

Library optimized to generate/process sequence of the RTP packets

Project description

librtpsynth

Low-level library optimized to generate and/or consume sequence of the RTP packets. Based on some code and ideas from the RTPProxy projects.

Originally designed to supplement Python code to do low-level bits shuffling for the proof of concept IoT implementation.

Reasonably fast, 2,000-4,000x real-time (i.e. 2-4M packets per second) when used from the Python code. 5x of that (10-20M PPS) if used from C code directly.

RTP Generation

Generate continuous sequence of RTP packets of the same payload type.

C API Functions

#include <rtpsynth.h>

  • void *rsynth_ctor(int srate, int ptime); Initializes the RTP synthesizer with given sample rate and packet time. Returns a handle to be used in other calls.

  • void *rsynth_next_pkt(void *ri, int plen, int pt); Generates the next RTP packet. Takes the handle, packet length, and payload type as parameters. Returns a pointer to the generated packet.

  • int rsynth_next_pkt_pa(void *ri, int plen, int pt, char *buf, unsigned int blen, int pa); Similar to rsynth_next_pkt but allows pre-allocated buffer and packet attributes. Returns the length of the packet generated.

  • void rsynth_pkt_free(void *rnp); Frees the allocated packet. Takes a pointer to the packet as parameter.

  • void rsynth_dtor(void *ri); Destroys the RTP synthesizer and frees resources. Takes the handle as parameter.

  • unsigned int rsynth_set_mbt(void *ri, unsigned int new_st); Sets a new marker bit toggle state. Takes the handle and the new state as parameters. Returns the old state.

  • void rsynth_resync(void *ri, struct rsynth_seq *rsp); Resynchronizes the RTP packet sequence. Takes the handle and optionally a sequence structure as parameters. Use this function when a time discontinuity is expected in packet generation, such as when VAD (Voice Activity Detection) is active. The library will recalculate the timestamp for the next packet based on the current system clock and the time the last packet was generated.

RtpGen (Python)

RTP Parser & Validator / Jitter Buffer

Simple RTP parser and validator to process incoming UDP datagrams, parse & validate RTP headers. Resulting RTP stream is passed through fixed-size jitter buffer to de-duplicate and re-order packets if needed.

Silence (erasure) frames are emitted to indicate voids.

rtpjbuf (c)

#include <rtpjbuf.h>

  • void *rtpjbuf_ctor(unsigned int capacity); Creates a jitter buffer with the given capacity (number of packets). Returns an opaque handle.

  • void rtpjbuf_dtor(void *rjbp); Destroys the jitter buffer and frees all internal state.

  • struct rjb_udp_in_r rtpjbuf_udp_in(void *rjbp, const unsigned char *data, size_t size); Parse and insert a single UDP datagram. Returns a result structure with: ready list (in-order frames ready to consume), drop list (late/dup frames), and error for parser/memory failures.

  • struct rjb_udp_in_r rtpjbuf_flush(void *rjbp); Flushes the jitter buffer and returns any queued frames (plus any drops).

  • void rtpjbuf_frame_dtor(void *rfp); Frees a single RTP frame returned via ready/drop.

Frames in ready/drop are a linked list of struct rtp_frame:

  • type == RFT_RTP provides rtp.info, rtp.lseq, and rtp.data.
  • type == RFT_ERS provides erasure info (lseq_start, lseq_end, ts_diff).

RtpJBuf (Python)

RTP I/O Thread (Python): RtpServer / RtpChannel

rtpsynth.RtpServer provides a single worker thread that multiplexes UDP I/O for many channels. Each RtpChannel is a bidirectional RTP pipe with:

  • one UDP socket bound to a local address;
  • one fixed callback for incoming packets;
  • one fixed-size lossy non-blocking output queue.

Build

Build and install all Python extensions (including rtpsynth.RtpServer):

python setup.py build install

Public API

  • RtpServer(tick_hz=200) Starts the worker thread. tick_hz controls loop frequency (poll recv, drain output queues, sleep until next tick).

  • server.create_channel(pkt_in, bind_host=None, bind_port=0, queue_size=32, bind_family=0) Creates an RtpChannel and hands its socket to the worker. pkt_in is called as pkt_in(pkt_bytes, (host, port), rtime_ns). rtime_ns is a CLOCK_MONOTONIC timestamp captured once when poll() returns with ready sockets. bind_family selects socket family explicitly (0/"auto", 4/"ipv4", 6/"ipv6"). When bind_host is None, default bind host is 0.0.0.0 for IPv4/auto and :: for IPv6. queue_size must be a power of two and greater than zero.

  • channel.set_target(host, port) Sets UDP destination for outgoing packets.

  • channel.send_pkt(data) Enqueues one packet for send. Non-blocking. Raises RtpQueueFullError when channel queue is full.

  • channel.close() Requests channel removal from the server.

  • server.shutdown() Stops the worker thread (safe to call more than once).

  • channel.local_addr (property) Returns (host, port) the channel socket is bound to.

  • channel.closed (property) Boolean closed state.

Notes

  • send_pkt() must only be used after set_target().
  • Output queues are lossy by design: if a queue is full, packets are dropped.
  • If no channels are active, worker sleeps waiting for commands.
  • python/RtpServer.py is not a ctypes fallback; the CPython extension module is required.

Minimal example

from rtpsynth.RtpServer import RtpQueueFullError, RtpServer

srv = RtpServer(tick_hz=200)
ch = None
try:
    rx = []
    ch = srv.create_channel(
        pkt_in=lambda pkt, addr, rtime_ns: rx.append((pkt, addr, rtime_ns)),
        bind_host="127.0.0.1",
        bind_port=0,
        queue_size=32,
    )
    addr = ch.local_addr
    ch.set_target(addr[0], addr[1])
    try:
        ch.send_pkt(b"hello")
    except RtpQueueFullError:
        pass
finally:
    if ch is not None:
        ch.close()
    srv.shutdown()

Tests

python tests/test_rtp_server.py

RTP Processing Scheduler (Python): RtpProc / RtpProcChannel

rtpsynth.RtpProc is a singleton worker-thread scheduler for periodic processing callbacks shared across many channels/sessions.

  • RtpProc() Returns the singleton instance.

  • proc.create_channel(proc_in) Creates RtpProcChannel. proc_in(now_ns, deadline_ns) is called immediately on channel creation on the worker thread, then periodically according to its return value. For the initial call, deadline_ns == 0. For scheduled calls, deadline_ns is the originally requested run timestamp. Return next_run_ns (monotonic ns) to reschedule. Returning base_ns + period_ns is recommended to avoid drift, where base_ns = now_ns if deadline_ns == 0 else deadline_ns. Returning None stops further scheduling for that channel. If callback raises, the channel is also unscheduled; the exception is re-raised on channel.close() as ChannelProcError chained from the original callback exception.

  • channel.close() Removes the channel from scheduler.

  • proc.shutdown() Stops the worker thread.

Audio Utils (Python): RtpUtils

rtpsynth.RtpUtils provides optimized CPython helpers for PCM16 and G.711u:

  • RtpUtils.resample_linear(pcm16, in_rate, out_rate) -> array('h')
  • RtpUtils.linear2ulaw(sample:int) -> int
  • RtpUtils.linear2ulaw(pcm16) -> bytes
  • RtpUtils.ulaw2linear(ulaw:int) -> int
  • RtpUtils.ulaw2linear(ulaw_bytes) -> array('h')

pcm16 accepts array('h') and bytes-like PCM16 input.

The same helpers are exported at module level, so you can also do:

  • from rtpsynth.RtpUtils import resample_linear, linear2ulaw, ulaw2linear

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

rtpsynth-1.3.1.tar.gz (57.4 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

rtpsynth-1.3.1-cp314-cp314-manylinux_2_34_x86_64.whl (200.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ x86-64

rtpsynth-1.3.1-cp314-cp314-manylinux_2_34_s390x.whl (200.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ s390x

rtpsynth-1.3.1-cp314-cp314-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (194.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ riscv64manylinux: glibc 2.39+ riscv64

rtpsynth-1.3.1-cp314-cp314-manylinux_2_34_ppc64le.whl (215.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ ppc64le

rtpsynth-1.3.1-cp314-cp314-manylinux_2_34_i686.whl (199.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ i686

rtpsynth-1.3.1-cp314-cp314-manylinux_2_34_aarch64.whl (203.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ ARM64

rtpsynth-1.3.1-cp314-cp314-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl (204.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ ARM64manylinux: glibc 2.39+ ARM64

rtpsynth-1.3.1-cp314-cp314-manylinux_2_28_i686.whl (199.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

rtpsynth-1.3.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (203.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

rtpsynth-1.3.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (207.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

rtpsynth-1.3.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (220.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

rtpsynth-1.3.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (207.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

rtpsynth-1.3.1-cp313-cp313-manylinux_2_34_x86_64.whl (200.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ x86-64

rtpsynth-1.3.1-cp313-cp313-manylinux_2_34_s390x.whl (201.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ s390x

rtpsynth-1.3.1-cp313-cp313-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (193.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ riscv64manylinux: glibc 2.39+ riscv64

rtpsynth-1.3.1-cp313-cp313-manylinux_2_34_ppc64le.whl (214.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ ppc64le

rtpsynth-1.3.1-cp313-cp313-manylinux_2_34_i686.whl (199.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ i686

rtpsynth-1.3.1-cp313-cp313-manylinux_2_34_aarch64.whl (202.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ ARM64

rtpsynth-1.3.1-cp313-cp313-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl (204.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ ARM64manylinux: glibc 2.39+ ARM64

rtpsynth-1.3.1-cp313-cp313-manylinux_2_28_i686.whl (199.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

rtpsynth-1.3.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (203.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

rtpsynth-1.3.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (207.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

rtpsynth-1.3.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (219.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

rtpsynth-1.3.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (207.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

rtpsynth-1.3.1-cp312-cp312-manylinux_2_34_x86_64.whl (200.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ x86-64

rtpsynth-1.3.1-cp312-cp312-manylinux_2_34_s390x.whl (201.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ s390x

rtpsynth-1.3.1-cp312-cp312-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (193.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ riscv64manylinux: glibc 2.39+ riscv64

rtpsynth-1.3.1-cp312-cp312-manylinux_2_34_ppc64le.whl (214.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ ppc64le

rtpsynth-1.3.1-cp312-cp312-manylinux_2_34_i686.whl (199.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ i686

rtpsynth-1.3.1-cp312-cp312-manylinux_2_34_aarch64.whl (202.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ ARM64

rtpsynth-1.3.1-cp312-cp312-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl (204.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ ARM64manylinux: glibc 2.39+ ARM64

rtpsynth-1.3.1-cp312-cp312-manylinux_2_28_i686.whl (199.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

rtpsynth-1.3.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (203.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

rtpsynth-1.3.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (207.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

rtpsynth-1.3.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (219.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

rtpsynth-1.3.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (207.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

rtpsynth-1.3.1-cp311-cp311-manylinux_2_34_x86_64.whl (199.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ x86-64

rtpsynth-1.3.1-cp311-cp311-manylinux_2_34_s390x.whl (199.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ s390x

rtpsynth-1.3.1-cp311-cp311-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (194.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ riscv64manylinux: glibc 2.39+ riscv64

rtpsynth-1.3.1-cp311-cp311-manylinux_2_34_ppc64le.whl (215.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ ppc64le

rtpsynth-1.3.1-cp311-cp311-manylinux_2_34_i686.whl (200.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ i686

rtpsynth-1.3.1-cp311-cp311-manylinux_2_34_aarch64.whl (202.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ ARM64

rtpsynth-1.3.1-cp311-cp311-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl (203.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ ARM64manylinux: glibc 2.39+ ARM64

rtpsynth-1.3.1-cp311-cp311-manylinux_2_28_i686.whl (200.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

rtpsynth-1.3.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (202.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

rtpsynth-1.3.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (206.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

rtpsynth-1.3.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (220.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

rtpsynth-1.3.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (206.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

rtpsynth-1.3.1-cp310-cp310-manylinux_2_34_x86_64.whl (196.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ x86-64

rtpsynth-1.3.1-cp310-cp310-manylinux_2_34_s390x.whl (196.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ s390x

rtpsynth-1.3.1-cp310-cp310-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (191.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ riscv64manylinux: glibc 2.39+ riscv64

rtpsynth-1.3.1-cp310-cp310-manylinux_2_34_ppc64le.whl (211.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ ppc64le

rtpsynth-1.3.1-cp310-cp310-manylinux_2_34_i686.whl (197.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ i686

rtpsynth-1.3.1-cp310-cp310-manylinux_2_34_aarch64.whl (199.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ ARM64

rtpsynth-1.3.1-cp310-cp310-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl (200.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ ARM64manylinux: glibc 2.39+ ARM64

rtpsynth-1.3.1-cp310-cp310-manylinux_2_28_i686.whl (196.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ i686

rtpsynth-1.3.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (199.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

rtpsynth-1.3.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (203.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

rtpsynth-1.3.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (216.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

rtpsynth-1.3.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (203.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

File details

Details for the file rtpsynth-1.3.1.tar.gz.

File metadata

  • Download URL: rtpsynth-1.3.1.tar.gz
  • Upload date:
  • Size: 57.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rtpsynth-1.3.1.tar.gz
Algorithm Hash digest
SHA256 4794d83ac04fe6a80731ca1452758558970a978c8f51f8bfb4301806d4ba6d54
MD5 66ae36e4ab9de89e80e62f75c27d2483
BLAKE2b-256 e18d6a08438ab2f83063e8f775acc704cf115481191c03450ea5e16df086f40c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1.tar.gz:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp314-cp314-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp314-cp314-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 345b194bfc86ff24ed6065747cd6af2fe6cb48a9044e1e24172cfcaab159c8d2
MD5 966ec88b5dda6a2cfe8e787dce575c78
BLAKE2b-256 4c07ea3326bc3f19ff7c3e95edda4b6ac772330a9efe7d131de449b832d9923e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp314-cp314-manylinux_2_34_x86_64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp314-cp314-manylinux_2_34_s390x.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp314-cp314-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 1295c195d98806945ddcf0154fd462540c05a45d98b9108c3724fb5a7d098445
MD5 8e54eeefe6f77f241e443ce2ce9c8f66
BLAKE2b-256 43771d5141ddf23efa5a810e2750cd884cc23875aeb0bc84698f5631d941639a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp314-cp314-manylinux_2_34_s390x.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp314-cp314-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp314-cp314-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 e11122fb07ca5a6b718d858d678b4d0376e75d18cc6b4663b49e8e1207a24430
MD5 b1124ab47a0335eee6eadb8e4bc6bec1
BLAKE2b-256 a69a3e6b46dd368c06ad61a23ec013f71e4c33649dff9ce07684fe6a392f8235

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp314-cp314-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp314-cp314-manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp314-cp314-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 2294905b3032c899e339c04f7e5d5d6b76e26cd57a6ea60f40ddf8b49eb1c7c5
MD5 b1008056aa419a94b8f1a406dbf848c3
BLAKE2b-256 8de856f875966e02a3b6c4472c71495ea711079dde16972f9a8050e0cade972c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp314-cp314-manylinux_2_34_ppc64le.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp314-cp314-manylinux_2_34_i686.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp314-cp314-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 9573a5ad5d91fee97b4aa9c3d5a30d91bd7d8c3547acc6675a343be4e80f616e
MD5 352640ffa27b40755a61ef027f2d800d
BLAKE2b-256 2b1762428634ec7a96fd4de9ddd6844d3f479ed0d347bd814ca5cf9e74b7730d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp314-cp314-manylinux_2_34_i686.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp314-cp314-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp314-cp314-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 259c7ba20ca5dd46554a06f4b53171cc5e5abc988836a71afce5287d29f1edc1
MD5 adec255c01d2ad6d46f8473356f55fda
BLAKE2b-256 66d3fad0227fbb8957f951e43cbc5caf6a4aafc2427a65c1c1114c20e09d0dbf

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp314-cp314-manylinux_2_34_aarch64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp314-cp314-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp314-cp314-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 d46ea5d32232c00a80a27b5086718836ee7edcb024ec27108eaeb4a167440ff6
MD5 db2abf43280bbf13688f38f76e4898f0
BLAKE2b-256 f205187c5d497bfd2bcc120a6310d8fd2f9a0524f3287fe17c50b877fdd3f997

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp314-cp314-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp314-cp314-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 22d94efffbba3c7745cfca7111abdf901486953ea9ebc3950170d4a1fdc54952
MD5 03ddc1bfe0f7c2f55e4ba2ea9ebdfd8e
BLAKE2b-256 f533e82166be5d840623205f9eca782f092763a247647049a70491a3692e3556

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp314-cp314-manylinux_2_28_i686.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3a219fdb27a9d3223a65c530ce6a9bce882cbc837bd4fdf4dee4bcb66eb58763
MD5 ab58c90d763ef940dd0e1b448f2c1e47
BLAKE2b-256 38ef4dc3892de5fcb0a68c304337d7f957972fe3ea1a7ec50db0ca1a7b0a909d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 ba37a086b1b53ad843c365cea2846c7a9d72830955ccaa86f5873e3fa55c480d
MD5 9255354ee2d606204d756fd27c6f85a7
BLAKE2b-256 c769965094d674f5ef7b608390ff6390a190e61a0a0c31181a1d1de3cc335939

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 29e931502d21c02760dd6a6e2335872f572ac22a76a7cef04692e6434c6bc3ee
MD5 873e8de18ce179037c101288219cdd8c
BLAKE2b-256 8099f64b6c962772c7a473f0dae3afc425d72e75f061332e6508e3997ba19b91

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d6dccafc95312c7603bb9705af43f3f6a5fe709f1aea586876c71ccd085b96e4
MD5 ebaed7f3ae9bc179699216122b96906e
BLAKE2b-256 bfab2155c7725925a0085c72499bda58b3ebafcdf30b5a29518ed672f3551e19

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp313-cp313-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp313-cp313-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 262bb01419e33034f7dbf35e00e47398d271a0fa22fe60a7c1e88c0d07812ec1
MD5 72714688aff58d8e503788123894a850
BLAKE2b-256 39e95b75b9ab84fb4540591c057d17ecab3ed484521a5549e25ca7b975dfe5ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp313-cp313-manylinux_2_34_x86_64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp313-cp313-manylinux_2_34_s390x.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp313-cp313-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 40479681eb3b3b7b116de69962e09434dc01053748f2cf237521ff6d22f24502
MD5 388419dcdb239e8f9db1bb71adb1b514
BLAKE2b-256 484395e399cb7092bc0eb8d7373327563c8310b58183650502a16f63f0e11e2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp313-cp313-manylinux_2_34_s390x.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp313-cp313-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp313-cp313-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 d73d673f777d134cb0ebb43a6d6dcee69f42f6b5fad7759149e7964a9e3e74b0
MD5 4928d11ab16d160d0d2f387807c5f3f5
BLAKE2b-256 b2165beded1a816692258173bac2a17192d368b1ab14f55bb12396caa1dc5d04

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp313-cp313-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp313-cp313-manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp313-cp313-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 0743a49b212e9e48b72b4620430810107f0f79d0d84b1acb1f9e3b3083958e3a
MD5 0fa0bd9c6caa7a836431393910342e21
BLAKE2b-256 cfa245201f31afd358029e4e85308e544585e5949e577147e8192834f27dcb82

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp313-cp313-manylinux_2_34_ppc64le.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp313-cp313-manylinux_2_34_i686.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp313-cp313-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 ae88151a5dd99953a1dfebc8039b0b6d8eca0e94772f2690b3e3d5bde1fe41ad
MD5 11af2d5cbfbe34e0df4d373fb21a8ef1
BLAKE2b-256 2776dac3566ea6b88cbb2e965104eae16838d0e6fac4cfac88ee527181afba3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp313-cp313-manylinux_2_34_i686.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp313-cp313-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp313-cp313-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 45afdf683853aa87610f47e4fa9a4bce36ce5149dce9e2567810748655b3c1e5
MD5 18dc21a9bb5fa44239a75f4275982105
BLAKE2b-256 8b30713c4f244931cdf180c200f89f54fea748ad769b741df6b48423d48eb1c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp313-cp313-manylinux_2_34_aarch64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp313-cp313-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp313-cp313-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 deca0ed8d6e94191f23599e7a76824bcb5ba90dc64dcb2da6fd4ba5347960bd8
MD5 3c99da7d81a47bbfcba875f2c6e488b2
BLAKE2b-256 0318c4efed5c79ca86fd30e0a4efeeb60bfb8fb8a1e00d9a6aa94877553a45a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp313-cp313-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp313-cp313-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 5dd8da063d3bf72ea3c121a422a868807da8252d6bf468c9b43ad36e6e860ddf
MD5 3ab8e137c291bd6de48a558964a28f74
BLAKE2b-256 fbbb963e4a271e07d631bc0010d12c6c868f6253b385672d82fedc596250571c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp313-cp313-manylinux_2_28_i686.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 db02b71a021bc2605e4cc7f3f36ec02b6be5b91ab331003dbed1882f81196e61
MD5 ece4e69402ec1c02ce68fefcd44e99cf
BLAKE2b-256 c008e4212a596d2fd774801b34c7cdf05018d82eeab5b570226bd060f597237f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 289dc77978cf2d6bd22843cce8216cf7f403ebfe4ff8092e60956172c0e566b8
MD5 2853ee2626a94a0e74348a6d088973ad
BLAKE2b-256 db567769dc396c6a769206b92caf9232131827be3966111c65b3f60a94d21d79

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 d372a35df5debf735e3a21dfedc9d65075640cda661f708f116b1c4ad04ee7ed
MD5 41400cb5f51cec0d65ad9fe8ec38b6af
BLAKE2b-256 2f0c968a00d1a00433d07ea4522f554257e91ac14030de9e7271aa35868c0e2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4816fb8d82c93546305906a0ee83e1dcaa1019203cbab0fc904191769d7008c8
MD5 9d39e00c555a2cc7a6c5f0043adefaa8
BLAKE2b-256 afd4ce170c7a2137a5d68527fc864ab228382f8abe1653ef6cddbd93cf780198

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp312-cp312-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp312-cp312-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 b8d5a594a89b19a8501c7d343ca218f8ccba8a7fd9a221261510a90fcdf5f208
MD5 5728f79271f029b3d7be22fadc093385
BLAKE2b-256 7413b92e224dec32fc73e999886abd95bb1396bb5fa1f5416df22d41899c32da

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp312-cp312-manylinux_2_34_x86_64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp312-cp312-manylinux_2_34_s390x.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp312-cp312-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 2aa896359c915d99729c03503d18c339dfc369dc2c4f023edbe9ccf6e3ed64b9
MD5 888b048bead02d55691aa8677800cb22
BLAKE2b-256 f1c4761fe64250a709c692d075463429055db15f66088e58ce7ee6b4d0321a90

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp312-cp312-manylinux_2_34_s390x.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp312-cp312-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp312-cp312-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 1aa1b0fec38e81769d560f7532b986cbfb57fc95232901749a7364860603b33e
MD5 a5078610e6f640fa78d002435eaf6c09
BLAKE2b-256 2955cce1ebdf02fe5aa3ae5f421f7be994e7f7501db2fbc1fb2c242104f26a5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp312-cp312-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp312-cp312-manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp312-cp312-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 472b2f1a64ab112feb76a5a5634a6be9c8388af89623442c49b2ca3eaa6f49d6
MD5 a9c70607ac40023471415bc758496cd1
BLAKE2b-256 e54699813a586685935f454a894d21f3a23cccb7731f93c56bcd9fc789995c00

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp312-cp312-manylinux_2_34_ppc64le.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp312-cp312-manylinux_2_34_i686.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp312-cp312-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 2f169bcd4800d3889224add3cbce40b423b1f8f59f16f05fdd6f407538456692
MD5 524979fd8b56193c8889c3b29d774e10
BLAKE2b-256 acdba6bada7dddc11cee64c61c4e3a097f3d7f9e67cf18c99972aabc88d17a26

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp312-cp312-manylinux_2_34_i686.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp312-cp312-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp312-cp312-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 c6ed314cdb1d7ab599ca7a19fee771e1773518e26f4a47cde3278d4e581bdee2
MD5 c6720fa9c519814f5d12f9f320c75328
BLAKE2b-256 0abd49acc9015a5d12ca502983c3833a026eb3feabb66c17142ba5158649a359

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp312-cp312-manylinux_2_34_aarch64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp312-cp312-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp312-cp312-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 278776fe4fe542e66918092657bb2fa4dbe0572d4dcc01e5b7fe5b1d6309bfee
MD5 b12a7de3699580539c68ac51860d4729
BLAKE2b-256 b2de661be3130e9bcaec534a1b43d0fed4965bfc1ed6adc57e31f8fcab0bee9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp312-cp312-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp312-cp312-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 3cfd3e6d4c5d350b5500b91bef65c9a9633771d317df8a564bfb8f88d66872ec
MD5 c5d744bb3c64469ef6bb1927499d8bc6
BLAKE2b-256 50861b235200bab312217c024d896610c61c3eccd6f62f2bef454df7ae711de9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp312-cp312-manylinux_2_28_i686.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 51fdbc86c32314b0cbe39a544b8c17ac0be3b849cd59bd85480e93cbdba1c49d
MD5 b810742a3fe08b8e0f0bcd6aab17014d
BLAKE2b-256 994c373987af34a32e6fbf06ebcfd438853488f179ee2511444b9e09389d540c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 4193462e43cfd6b1b4beab23377ded71d629d5e07e2a5c962bec5a4998e1b94a
MD5 b245682dbf8599ec699ecfd30f0f4a18
BLAKE2b-256 0b83b514455b1af39ae3d971e95fb95e6e75300f1bb8dcbfd940ba67c60b26ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 625be64c769d3b066c808a56ea95aeee007d6380e746ad5cd83b569c154b5f44
MD5 badd48b92506747b3880f34ed81c5273
BLAKE2b-256 3bf911923ff6301bd8bea3f354d787a1a4b1227ff5cf88b7dc10eab1b0f2f1b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 52dad743440f9ac22fbb873d466e9f9ca2c17b3706d8d8630b9c4cb67654d2e0
MD5 bf9ba3e58416b00e8321276e0cc769d4
BLAKE2b-256 ccb7f20890127b8d143fbe1a64876a034f5300d1c9650ef9e8468fc57b0feb70

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp311-cp311-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp311-cp311-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 98ae67e26d107787dadc3b524031b0f963d6c4d589f8bdc416cf00583a3781a3
MD5 38bdb8c0a1f5cf149f35a5de3b6d476b
BLAKE2b-256 f6000709489e24d4bfe3cab760ec36b698c8b068e53be67f18cb645d73ce064e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp311-cp311-manylinux_2_34_x86_64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp311-cp311-manylinux_2_34_s390x.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp311-cp311-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 66ab3bec64be49d9119d69f815e9b88f59e9db9cef201c170a743af17efc55db
MD5 cdfb5142f88ec86e4654c5b29144ee96
BLAKE2b-256 fc2baee3a469df1f376fc54516bf15a773b57c77ce19b6aa3f41ba6b8d6438ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp311-cp311-manylinux_2_34_s390x.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp311-cp311-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp311-cp311-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 ec616228cdf8c22f864a3b4ab83d6307660a23aa0d4d476dce196d559ef35ac0
MD5 cb2790490658d076ac36bfd6f789fc9d
BLAKE2b-256 54e743020dc767d5e9b7ade250b0dd5bda0e0e6ee18e39fcb068333f72f5ead8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp311-cp311-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp311-cp311-manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp311-cp311-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 399dde32f4be57d9b843cb951357f22c67ff879d0fdf6403c1f184a640a045bd
MD5 dc33a05321266f0ee2a5fc58f757d3b5
BLAKE2b-256 3a4d8079efc866d8fed748c4f58a0e77f7eadb23eba8e84a5b4ae34747806558

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp311-cp311-manylinux_2_34_ppc64le.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp311-cp311-manylinux_2_34_i686.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp311-cp311-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 277f99d55a663d77d49a9c1bd43af6c23526fc0390d011c8239489b2c50670f7
MD5 c01e98068372eee8a253317c5003c9ef
BLAKE2b-256 7c7a053fd683f0b7f18c949482af0174a1445faf4c37f833ceb5cf9467d6aca2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp311-cp311-manylinux_2_34_i686.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp311-cp311-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp311-cp311-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 86ce656b91a4395ec655b93f6648fac504e5d6977e7a0bc837cad29fe6847d6a
MD5 7797639b01be3d820460ceb9bde10ebe
BLAKE2b-256 1066f23c8e8fbbd84f1a08e955e7881453588c19fc68c70e4998124a54edd1b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp311-cp311-manylinux_2_34_aarch64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp311-cp311-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp311-cp311-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 4dc8985f0dcffec6ef7a91a86e15d591d4fb8c184447e4ae5fc65023abf81c5b
MD5 2c4a04487ba5290c52d1ca34c7593ed9
BLAKE2b-256 b835a429880508a7ea7b2950f59d1adc57af067dc42314eb4057c0dd8c1d33a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp311-cp311-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp311-cp311-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 0ec39ef4017c1747b030b51fa80a5709888414bbc5c291e3b6c5874aa5c9cd86
MD5 d78d961c1508dc9bbbfef83568f1595a
BLAKE2b-256 36ff54ed530adeb0a04c26a988233872285ff5e60ebb91733924540c95993d83

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp311-cp311-manylinux_2_28_i686.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8be4e6135323686f81b691b32125001aad9c2d3b4ea0aa5d9627fdbf6a97174c
MD5 29b0da240a87edaa768dcd3db7690bd3
BLAKE2b-256 18b949e5b2235eba58ea434fbe1a293be821b91855263728e6f30e09340e1f14

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 54d5f70f3630767fb8da4ac498b46e8028aac338bc2448e4d49527b7c9906c62
MD5 0d3ed46434b7788d4b1ac3259fb53f21
BLAKE2b-256 e44edad2e8b5e46fe4395069c307081a0fe4a51e4424bc20e1f5847139dff97d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 749b88b6b9c1b78762ebd6bfa67e283f0c486b34f93c1f3d55bcb21ecbe475b7
MD5 61d6ccf0b9c71104235cc0f31947ab50
BLAKE2b-256 fe0faa96e9074152f6f14d45807ed3fd8a17417871ef06f180b52166bda520cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b1abaa2d1da4bbebc4ae884fa2df4026cf7dd8131bc06962fd2b97757aa4699a
MD5 5f78f6d006e382c2e0f2d1bb80363279
BLAKE2b-256 640dc71a3f2ffef88af3cb8f0ab1b747ef7472747f8ffd328723af1b3007a962

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp310-cp310-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp310-cp310-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 e991de27326319b5439072395bd023d9233dfc84b8eaf034eb4da4b27d7ab1df
MD5 129fb59c3ef76e668f00b26803072dbc
BLAKE2b-256 2e8dbf09402fa8908607f57c9767a1e31f2fadbf8bd3c0ed93785ba32a67e879

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp310-cp310-manylinux_2_34_x86_64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp310-cp310-manylinux_2_34_s390x.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp310-cp310-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 bd257556d80f09c2be5964ca405866bba263b229b5aedebbd5eef76739416766
MD5 5c7f6e0117f6b3b04844c65ba9453199
BLAKE2b-256 fbb60a387607717953841485a071b88ad89fdb0e95c173bd2b7fc8e5f58aa476

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp310-cp310-manylinux_2_34_s390x.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp310-cp310-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp310-cp310-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 950f967309227c1eacc923dae26d9a33ed33ca6f11ff148dccc0b5354c91f889
MD5 0fdd6bc2e7057c3b5a904784d4fbb494
BLAKE2b-256 428bbb68603e2fa86a6066fa6aa21a9eef50f8c5ec20000e71a142cc3e67af19

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp310-cp310-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp310-cp310-manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp310-cp310-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 17358828565c0ca0ba8704897e9dfd66619006c8186e12837013cbe08987d35e
MD5 4197dbda074e94ae033b9535e95d32ba
BLAKE2b-256 23f84920643e5901c8dcb84a4e17db2517d495b214971208c28ac52b0e1ad932

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp310-cp310-manylinux_2_34_ppc64le.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp310-cp310-manylinux_2_34_i686.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp310-cp310-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 88afade47702a722e2b556c8b0395fef46e59369aac3a6cd673622e5f2e3b2cc
MD5 f75c8a29f5904f88c3dd0af799ec2239
BLAKE2b-256 37bab8fd681196c765e3a40b49f850d8d2fdeb92caaf6d1c11ba67c56f649095

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp310-cp310-manylinux_2_34_i686.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp310-cp310-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp310-cp310-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 1aa110beb54c47ba6ce89cf69d1e197e403165e1417b64638b4139686750e68b
MD5 2564eaf698d662afcb75b90c0dd951a7
BLAKE2b-256 317b2841cc95190a3531eeba75039bf2ffd3a5a302392dcce386bafa280e8444

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp310-cp310-manylinux_2_34_aarch64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp310-cp310-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp310-cp310-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 e60911087d04043b70ebd19543f5c9306f7a8fabcb3e16c46cd29815ef03da85
MD5 8f05fb02449406080e70c11008a20145
BLAKE2b-256 fbce841b7fbf017a3eb246007c6945a5e9cccaab37c7076b1b3f69ec7e958e2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp310-cp310-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp310-cp310-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp310-cp310-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 af62c553291b5ab05a3d9cd41f9ac3eac30dad8e658be7bf8f4eb6e42abd16ed
MD5 3ad67a864d66fb2775b75199de48c8cc
BLAKE2b-256 1e4d2430b9c31e10cffac833999c9a1687d5bfb3809969f796420ba6609af85d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp310-cp310-manylinux_2_28_i686.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ba65a6e968318d39150db383b13e5774ea3e8f98f26c892f48efe1865f464ff1
MD5 592da686f09010ac808a421ca788cb68
BLAKE2b-256 1f0072baa103626c47b0bf5a4eeb0c51fa66575181c58acc22c6ab0f99adf97a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 8ff9c22bdc277f4b6d611df76da36da5200e07796bd3e03ed7392a5d57701ca0
MD5 cd792674c4dd3390bc1ddfece8da0935
BLAKE2b-256 24de2d812f4ace5f9e60dc151b15966f1696cc1defc01caa5ce93ae62a4bf764

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 a173d2547aaf2b62fae52c90cd58a4223240d1d1fd2dfa4d0323ab4a3475c9cd
MD5 1acfd90b7c26f9d698eb6d8e01d9eca7
BLAKE2b-256 2a462fafafe9445ebf493f38a5273c41453b905131ffe4a30ed294b77e958ba5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtpsynth-1.3.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 57bf2cb381d2d342b2f2180a61df7adcc444829461a139e8abf2609882b0b9ed
MD5 577659490a07ece372e153c0ee4ddb06
BLAKE2b-256 fa765892cca57d08f0b377513fc563ab8367484c81b7c57a2f37f676f851f362

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_and_test.yml on sippy/librtpsynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page