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.0.tar.gz (57.3 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.0-cp313-cp313-manylinux_2_34_x86_64.whl (200.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.34+ s390x

rtpsynth-1.3.0-cp313-cp313-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (193.7 kB view details)

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

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

Uploaded CPython 3.13manylinux: glibc 2.34+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.34+ i686

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

Uploaded CPython 3.13manylinux: glibc 2.34+ ARM64

rtpsynth-1.3.0-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.0-cp313-cp313-manylinux_2_28_i686.whl (199.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

rtpsynth-1.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (203.7 kB view details)

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

rtpsynth-1.3.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (207.8 kB view details)

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

rtpsynth-1.3.0-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.0-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.0-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.0-cp312-cp312-manylinux_2_34_s390x.whl (201.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ s390x

rtpsynth-1.3.0-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.0-cp312-cp312-manylinux_2_34_ppc64le.whl (214.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ ppc64le

rtpsynth-1.3.0-cp312-cp312-manylinux_2_34_i686.whl (199.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ i686

rtpsynth-1.3.0-cp312-cp312-manylinux_2_34_aarch64.whl (202.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ ARM64

rtpsynth-1.3.0-cp312-cp312-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl (204.2 kB view details)

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

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

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

rtpsynth-1.3.0-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.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (207.5 kB view details)

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

rtpsynth-1.3.0-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.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (207.1 kB view details)

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

rtpsynth-1.3.0-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.0-cp311-cp311-manylinux_2_34_s390x.whl (200.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ s390x

rtpsynth-1.3.0-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.0-cp311-cp311-manylinux_2_34_ppc64le.whl (215.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.34+ i686

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

Uploaded CPython 3.11manylinux: glibc 2.34+ ARM64

rtpsynth-1.3.0-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.0-cp311-cp311-manylinux_2_28_i686.whl (200.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

rtpsynth-1.3.0-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.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (206.2 kB view details)

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

rtpsynth-1.3.0-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.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (206.7 kB view details)

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

rtpsynth-1.3.0-cp310-cp310-manylinux_2_34_x86_64.whl (195.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.34+ s390x

rtpsynth-1.3.0-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.0-cp310-cp310-manylinux_2_34_ppc64le.whl (211.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ ppc64le

rtpsynth-1.3.0-cp310-cp310-manylinux_2_34_i686.whl (197.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ i686

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

Uploaded CPython 3.10manylinux: glibc 2.34+ ARM64

rtpsynth-1.3.0-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.0-cp310-cp310-manylinux_2_28_i686.whl (196.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ i686

rtpsynth-1.3.0-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.0-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.0-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.0-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

rtpsynth-1.3.0-cp39-cp39-manylinux_2_34_x86_64.whl (194.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.34+ x86-64

rtpsynth-1.3.0-cp39-cp39-manylinux_2_34_s390x.whl (195.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.34+ s390x

rtpsynth-1.3.0-cp39-cp39-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (189.7 kB view details)

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

rtpsynth-1.3.0-cp39-cp39-manylinux_2_34_ppc64le.whl (210.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.34+ ppc64le

rtpsynth-1.3.0-cp39-cp39-manylinux_2_34_i686.whl (195.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.34+ i686

rtpsynth-1.3.0-cp39-cp39-manylinux_2_34_aarch64.whl (197.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.34+ ARM64

rtpsynth-1.3.0-cp39-cp39-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl (199.0 kB view details)

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

rtpsynth-1.3.0-cp39-cp39-manylinux_2_28_i686.whl (195.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ i686

rtpsynth-1.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (197.7 kB view details)

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

rtpsynth-1.3.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (201.6 kB view details)

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

rtpsynth-1.3.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (215.3 kB view details)

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

rtpsynth-1.3.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (202.2 kB view details)

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

File details

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

File metadata

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

File hashes

Hashes for rtpsynth-1.3.0.tar.gz
Algorithm Hash digest
SHA256 e7f2840935f635527f579de866393538ba4a78e24590acf3925e90d9b91ecc6a
MD5 44161d5a6dd745490435e5e5282bdb52
BLAKE2b-256 e3a28ab95c87f521dea1cedec1c30cd9fe04c50e41252565ae58899be02454bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0.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.0-cp313-cp313-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp313-cp313-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 87fbd03ed9642ed71d1453966da63ba13f77df9123109656375b9d215101f996
MD5 e2843090b21afc45de63edb3f04caf04
BLAKE2b-256 bc97f198a1952de3d5c3c4d1a62d6ef2042fb3bdaf29afe1d4dc58273b4a731e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-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.0-cp313-cp313-manylinux_2_34_s390x.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp313-cp313-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 c6f9e9dbeba5aee2d033c9d30ca15ab3290d766083ec8760d87b9e07b2599f5f
MD5 d3fdfabfb562d948d9f6e3b1d86ee3e6
BLAKE2b-256 9d1089342c7412e735a428161d178e318017e7e7a4416e7e8cd5797cfccb5306

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-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.0-cp313-cp313-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp313-cp313-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 1b3e7234d40b0bf006f7d584276b9213c8be3cce57ae30b20dacb8497ef9443d
MD5 db59af05668ad234c1a8dc72d627e338
BLAKE2b-256 d48260875d24b8fe05e630c56be1644c9610437d9fd33f6673d9e69de1e6ea84

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-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.0-cp313-cp313-manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp313-cp313-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 679cafe88b2dd672ffbe3c52c4cb628a7e622eeee84d160873ac0e9919947de2
MD5 e93a7021aa001cc4bd1ed47dd4484632
BLAKE2b-256 d91defaf6a977a403f36aaa3b39774d24c242026789645564eda74da756c3c4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-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.0-cp313-cp313-manylinux_2_34_i686.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp313-cp313-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 221a0455fed0ad9800f5a6ee5f4026c65e1cf51dea65c59d5166d1a6aec7c7c1
MD5 ab75dac41bee1493e6a1f975de9578fa
BLAKE2b-256 9eca41c3d47cbbe6f8526c3dce17375ea2d61edc364b2d97a56853efb541de0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-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.0-cp313-cp313-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp313-cp313-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 b245e11518862904a21b8d3d64f3a9601c08aff5507072d7e48d326c7aab2256
MD5 994566b06c7d948f5dfc3f7208984bba
BLAKE2b-256 33609314230aaebc99af70852533cd979b4a3b87b281701323838bf58dc8fd4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-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.0-cp313-cp313-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp313-cp313-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 bbbce1534b2e7a1c4cd1bd775ecf9a3e3136cc831ce77834ea699499b4a6bec0
MD5 6e47b51c64831a3976f49da6ae6d2976
BLAKE2b-256 3efd2dc6a5a5be22facaec42de7641091ae574ccdf9a77f67144f402a6aac124

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-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.0-cp313-cp313-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 f71cef2a675d0313c79140a1d1eab7f5c239957f557c9c720550779a3f0c7552
MD5 3d2cef13744cc42355d30872f6805baa
BLAKE2b-256 8adec473575317b546e84c4d19434679fb2ea1cd1ede84cd6d8c7e9112fe4283

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-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.0-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.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f7f7773cbf50f37e23c8bebc0f874c059582894bc1ef45fd812a22713e574653
MD5 20ee315a596218b71724e03b058aa625
BLAKE2b-256 835464b212e19e70e4a7bd7c7193de4de4538246dcdda3b51872478118e73207

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-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.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 62329331e0689a82e840f25e82a4f6a45df195c9fcc1f60ed17c7ac560e5dfe6
MD5 8a225e92a8a03ef310416c6970a3d89f
BLAKE2b-256 13f478015f950211ff05a82d0513c16ba99bca7a8de329223c2e5bb6616e1a28

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-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.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c6bb5b26282d71675b2e46d99cd402146cefa2039083c06cfd4982d9e691ca0d
MD5 d98ab6be43f5b578d6b06ef6317ce2f8
BLAKE2b-256 660f429c11b01973597f70f542c2b0af39786b92950c211e8a5dc02ac3875b8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-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.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 976082734064efc451f4581a640e1c18f6f5d3a9dfc2cd2b4cf957fd03ce7f73
MD5 dcd73b1c1126111226719665348cbf48
BLAKE2b-256 3e9e42433915e6dd10ef6fb40ead1784bd07617c0ef5b52b1a56a82c6179db72

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-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.0-cp312-cp312-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp312-cp312-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 b1d99a8aa6e6e92872104770c24aee2a8bd1d6e742b1c7100147fe385c4cff93
MD5 d8581d9cf6eafcaa9c5b8efbd5ba8ec8
BLAKE2b-256 e7816fb41bf1135f3560cece037e1fbd561e01f6f3f0f1f917fe7504db89a858

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-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.0-cp312-cp312-manylinux_2_34_s390x.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp312-cp312-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 fc0fb50e66c15e254514741b569b680f33e1eae248a5bdd94cf43b85ae7eea61
MD5 b90ef9dd4159ded7e2488315eb4040be
BLAKE2b-256 73cd16f8d9eeb098b7be6005ec32cb1e7ee6bcc1996aa1ba5537f36c94e364d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-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.0-cp312-cp312-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp312-cp312-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 392e78857ca56d6312d7854898961b12665eae2faaf23d368144d3d651d2f335
MD5 4fa4ea7eb0ec1c496fac5ae6c244c04a
BLAKE2b-256 89113b24f857e7bc4be98f29c822acf5ae8b3dd55a65f71af5b6c2713f0cfaef

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-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.0-cp312-cp312-manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp312-cp312-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 a18ba1068902dbce8c82ae59d02b01b5043ed2752348a07cfa17c1e8d13b5e2a
MD5 7cd1d6714d2bc9d144b0e054e8f93c69
BLAKE2b-256 ad39d9a5604ffe19031bd79b986b54b3f813ceb0d8772382e81ad44325cc3e24

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-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.0-cp312-cp312-manylinux_2_34_i686.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp312-cp312-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 a6bd9271a7578e511cf1cdd4071589bc0dc316749dc70ab24358560c6b57b12a
MD5 c8392bb95af35b32a4350e96899df112
BLAKE2b-256 6fb5ffb7e1c3a8a23afd1e724719df666cbf3e357b2425d948d5c09c5df129e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-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.0-cp312-cp312-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp312-cp312-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 c1f895b9dc0cf3078afd95d5cadbadf05ee0a2ec4e39660d44f255f35a2a3d53
MD5 bfbcb4a3205f6287a20f9e1acb2f16f1
BLAKE2b-256 0d70ed446f4f9dd3db4015c9bebd6363b050e955ab8881b615c7483466e461d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-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.0-cp312-cp312-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp312-cp312-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 1b34a462f1f0e3891b1dd1be7d9006575b694bdb980626493302e37dcf78637c
MD5 a6e2b0431672bbceceae5a6398d69a8f
BLAKE2b-256 7bd2401dd89ba8807d19a9a2280a9d3bf9cf4a616ef95ecf4f198fa519c0f49f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-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.0-cp312-cp312-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 d924182b7769a09b3723abf314778ce1259c4614f8bbbd411d64c04efb9d0d7b
MD5 75b8ef66254d97bbc380237b440acefd
BLAKE2b-256 10c20c1d53fbcd340e31cee6b957bb90bc2b9344a74822ad07cd6b97ffc69252

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-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.0-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.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 35d4e54ab6ff8cc07dc6093438e8d30dda4b3a2d09b4116def19e8b6a244fb11
MD5 acbdbbe3c70f7395a130db9a38764560
BLAKE2b-256 91f750f9aecbf454315c9e562b8c711d882f4049209de37922d4bad805469275

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-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.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 439ad1803b5d4b28e7fde698418e4d3de3044c8af031a2175924dc2e62312817
MD5 dd449f6ad45cfddb3eb2f9cd0ce58ea2
BLAKE2b-256 bd79ba7c7d23c1efe041a7742409bc09974872b6445d6ebea6a6463e7b2d3746

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-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.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e8774ddb8932ce38962876fca91ec4a08f60957c2fd637942d66f0bda287f1b2
MD5 d952ad2b50c072e01e8faaf23c5d8a74
BLAKE2b-256 08fd6773450dd795074c2013aa3080d4729d7d5dc62690f3aa98924d26fc2735

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-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.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 94453a04ad701b3473fd4534598856cf74b6fe6272dff3d7dbe173826a28b68a
MD5 34b70b761ae54247971d0ae87394abca
BLAKE2b-256 57247bcd07bfa028d7f545654a1221f18b9203504977c930278dbc64cdc6e502

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-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.0-cp311-cp311-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp311-cp311-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 5c218733bdffd55de449135333cfff4130116f4c58663f5a4a9f83ac4d9f6ef6
MD5 767ed72aa3eeb6be6df4fa6ea88a4860
BLAKE2b-256 9c3135f864f91bfd6e0bf71e3218779c9c7571acc42185a2c32d67986c415ac4

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-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.0-cp311-cp311-manylinux_2_34_s390x.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp311-cp311-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 3a0977cc3eea156796f4efe1ba89dc799bf55592be74cb03619f737479f9d174
MD5 b25ad17dcf25eca1104167da8feb274a
BLAKE2b-256 8750ac278bc638ce5eacb27e057e405bec3e4b66f8410c2c3fb47144e9cef9ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-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.0-cp311-cp311-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp311-cp311-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 182f548b13771575c59ada13e7445030466ec9fdb7285384ea15e5db756c2a24
MD5 0561f20aa8080b7185112e1df8611459
BLAKE2b-256 400fe12c730c131a2732d3bfb7add0fbb0bff69685dededdd495fd9e90e753c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-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.0-cp311-cp311-manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp311-cp311-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 e69d35afc0d432ab5a1f1128db28201baef02fd9291fa1e5dcf20c8a229c0cb4
MD5 32e07c51f0dfa13b59415ef5b633a80f
BLAKE2b-256 7e349e4b7399d8e4db43001e31d76c38423d9e3e4a4cc66fc08589a7bba86614

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-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.0-cp311-cp311-manylinux_2_34_i686.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp311-cp311-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 42dadec5df603b2861443989d11f446c2b83906507d7c8000cac8e4711a47728
MD5 4593f16f1f44713fcf6fa1512456d246
BLAKE2b-256 7854e0da6beb576467324ba27599c4ab40d24d14b89eda35589fadf39af229f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-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.0-cp311-cp311-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp311-cp311-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 79c899ae0c0ec9e6c4e541e9d32c443659e3ecb646f9908a23a36ba12059a3ea
MD5 895b894f36ff2655c0799072be4190bf
BLAKE2b-256 b3af6a1aa1e4b617bbc549ab55c4412e6169c3c82e3503bc59460d46cbe98eda

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-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.0-cp311-cp311-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp311-cp311-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 c86de5141873ff02c9cc080185fd642ba7d26ce337dbf424d6a1eba429ab2238
MD5 460d13e0a303f2fef5504509d46155ea
BLAKE2b-256 b04b908cadd0d53b207f88d72a757f9312074e5af835fa8ef9e15ad8aca5dfaa

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-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.0-cp311-cp311-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 95929f61425d62312dd3bf9b2b2a18b00ee3964f4865006cacab713b4c934cfa
MD5 8c024143735351b56302aa155e0a5c9d
BLAKE2b-256 897e1f9d95c565daf67b278f30b75c7f6e94c8057b37a6aefc79ba8ad1d8716f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-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.0-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.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8d1e32eb92e61ec2a91844dab18bc9565d13b10bf37700b82899d49805faabed
MD5 6dff040e0b8b0b5440954a006c2e7b81
BLAKE2b-256 cc5c3443aa6071ba90e851bda14ae792ef6cfaa5bd3fee2acef0128c5bfae86b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-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.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 82fa14d33f22fc1f671cf93411388c9ee37a3b28fd6c0c01867fa7bd10d5268b
MD5 7ec7cb7c038ba5df925cd487e7a01406
BLAKE2b-256 d0964c4ba8eb40e4fc9a8cfb619fcd8112f8d62e3635042fede55f6de71ba61e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-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.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 4926d6d8f5e2573bb90f933290e01a9ae2ab0dc9bf572af3ec59afb2962b7ffd
MD5 e45dcfedfc9d815805e9d105a4346138
BLAKE2b-256 00ab92d4c4c20b2caad1da420eb4126ef565ab65d6e9a6d28918e04af31506af

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-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.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 faba7633d6f0b8ff7be6cfac2d47fef456e0916a0eaad27e7e5cfa85e9d221b2
MD5 355c9581b740472030b15bc86c3c07cd
BLAKE2b-256 f04a10265aeae15d7b9b9583cd69e0a3508dd4d6e6ff262fd0ffc03793cd80cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-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.0-cp310-cp310-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp310-cp310-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 c6c3a16b7e5efc5c42364d02785cb968bd02e4585c88885ed7795ffb41714214
MD5 80bc1baf09e88b87bfde4bf1b3416cdc
BLAKE2b-256 b47fc37908803a62be47f4a8ee0fcd8e353587256b23bd1f0e2ce3264e226868

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-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.0-cp310-cp310-manylinux_2_34_s390x.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp310-cp310-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 a1e3c6d9245f2626427da9152ec257c698217ecf21fcf7fbe4f640bee80e8e67
MD5 e48fd63e0e9e1584ec080b204d4f9c26
BLAKE2b-256 4f29d7a49dec62aadd66e828dc1dfb931d44e1d8777413692a7034eb94606cfc

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-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.0-cp310-cp310-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp310-cp310-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 a4fddc365e0c8ec0e8ea489112723c84ac80ba80b65b580eaaab8c0e488fc07f
MD5 049e336fb84fafa2d8b053159fc17be7
BLAKE2b-256 7204de424d3cc08a570c4db5ac8e2b6cb618126da771a18c2a6e85dd1f832020

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-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.0-cp310-cp310-manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp310-cp310-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 865c68187ec7895de8531c1b2b6f70219d8187fd78d16b373f92ccb169b16490
MD5 c5b79764cdad763cdf2db6a4785f5fbe
BLAKE2b-256 aa9fce5504799e81b35b5b897b0e0777421cca93b60fd9cb196f2a1eec1a526c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-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.0-cp310-cp310-manylinux_2_34_i686.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp310-cp310-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 fba5c4019c0db13e243221e318f96cd649059c50cfe7653ccddda1e4d807cd1a
MD5 7d47aec7eb14e72667ee1d634e97c6ee
BLAKE2b-256 f0e084c5bb7b374ee1fc8070c4079f305143b851750ae96678179ce5fc327091

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-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.0-cp310-cp310-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp310-cp310-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 c2020abaf44559d65556f6a4fcec403ceddcac0ba26a466c321fa2b98d8c7e74
MD5 2339537703727ca0ac78f3e55fef9862
BLAKE2b-256 06c638773072bc1cff3695b315d16ad1d71a64324ad299e182695e2423fa9e1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-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.0-cp310-cp310-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp310-cp310-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 89ebb09acd5cb40f5e187fcd8f69f12d809c0717065f2e4df3e1cfbb948c2609
MD5 6ba3fc253a12004fbbdcf15b17047a27
BLAKE2b-256 c1d3dee79d0993ab633d73ae6cb23b75c5751883a6e4e66320ba97be4294067f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-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.0-cp310-cp310-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp310-cp310-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 75577014577ea4e8dfade0c397fdb762f2e0054fc8cde59d9114711ecaf1d173
MD5 a5daf32d0270605b8445f25cc0a67578
BLAKE2b-256 a98637a37833c36a3cc7099f48f3348e1164d7aa5326005b59db5d5863a85100

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-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.0-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.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5fef0bce1b9d6c5c193c147bc8ce7d00c8eb205fdf7c0cadc7c3c7c77aa58476
MD5 cc45b7a60e1129182c81c1741d791eb8
BLAKE2b-256 2b54ba15179418e740025a0ccd069d4c9a5034945870365fedf02e0c38d1a2ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-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.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 5318c337434ed9b15c175803ae8ee313b0ad2f78da7a4fe957cee7242622a93a
MD5 15bb23e1b0575389c971b018b771f045
BLAKE2b-256 380692fa3b36c7cf277331f743852b1efa29a820e2ec86c4ce100a9b0d40f8b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-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.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 751e2eeab587818b7e15a2bda620bbf05a85e312846c1d6470998a91d57d19e1
MD5 0495adf2aed8b2388af4a13405df5936
BLAKE2b-256 5334e1b28935ef00a2f74b94ea9ce1bcf4e50471962c8f21db44ea579a9e7563

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-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.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bf72628615a650592e35e9c86f9311da82943fa42ebaefa7401b3e506fab333e
MD5 3ca6bc46c86e4ca65d450da7c635ba9e
BLAKE2b-256 1d594ae679806e7fdbe20f6237d8df6764d0b79b0b2e410986dc4499c83cf814

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-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.

File details

Details for the file rtpsynth-1.3.0-cp39-cp39-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp39-cp39-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 6e59ef7fdd14f7662233980ff6f383367e3298a27bd6fc97f29cccbc9d313e7f
MD5 d3fd5573652ff776b8581ffcb78284ae
BLAKE2b-256 d9cd81e88508d5be4c2863757b394811ac25af03f01693531cfbd1bce446947f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-cp39-cp39-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.0-cp39-cp39-manylinux_2_34_s390x.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp39-cp39-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 4bbeb122c03dba33f05c18e0fb814188f1ca1fd52cf0079ee270310b932a52ba
MD5 07eb7d660b9034ad075abea3df1a84f5
BLAKE2b-256 7a5312183b3a5ec82a93b7fb2e823fe733468085d5614835adb7fbf71ce98782

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-cp39-cp39-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.0-cp39-cp39-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp39-cp39-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 30a62632013900ae0d162dc98aa11bbb6a41bd83af8defd726f9e4e0cebe1f61
MD5 dd9403bdcfe7f9cb1205f87d703b4c09
BLAKE2b-256 bd35a18d53fc76250522329a9731367876605bef0dab570431e26a751d79b2fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-cp39-cp39-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.0-cp39-cp39-manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp39-cp39-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 17254b6a4c29eaeec92ffbedb5100283a737b12d11aa172a23051fa19b4b3468
MD5 841ded73cc9ad35db800ca7a2979f1dc
BLAKE2b-256 80acc749dab1190cf2fa09cb56753e934d99f7661fa4f58e6142bce1df917fd2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-cp39-cp39-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.0-cp39-cp39-manylinux_2_34_i686.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp39-cp39-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 d1709814eb7f59cfa919e4b2777e766d6131fd8a982c2933203ec6113388a51a
MD5 16ee7140d5d150b923cd3fe703b73ca2
BLAKE2b-256 c68a81b8e2b54d0a427aeba37124fadb60ed4d18b0e85abcb957fdc8d772024e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-cp39-cp39-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.0-cp39-cp39-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp39-cp39-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 641c0cc9f665f578773b04717853fbe7b7235900cbb737b622663d3e6152dd79
MD5 4262f46b396b94db185036d8181a9fdf
BLAKE2b-256 9b2d524b8314fef855eb69fe503cfd54a1120f4f9d61bdabe0c4d4777e0efde4

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-cp39-cp39-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.0-cp39-cp39-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp39-cp39-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 48a2f7876e05e2473c516094675cbcac4d01360d279001e7dce6bef5d9388789
MD5 17ea3c1f19e7b8c1e25950bc9aaba60e
BLAKE2b-256 ed0d3c5a427c6dafd5f7abce4ff7d4c6522c03b4c7baeea025ec039bc3559e27

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-cp39-cp39-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.0-cp39-cp39-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp39-cp39-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 2ee682b9878582faacc193e3a1c7484bea36a532c93f3a4c5e888a37a8a9d023
MD5 9c5685cb9a3468d11620853d14910510
BLAKE2b-256 11627d5398e6276c46f62e34fa2d7412dd61a59f84057e2cbf82b69204ad6b03

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-cp39-cp39-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.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 727c31db0bda15ec2a5ea52956e94e5e4d67593a5b93c141dbaab893bf4eadd7
MD5 e40f8a70944628a20d3f5cd1e25b444b
BLAKE2b-256 0e0c5b27c477611aa0651be4a1e7de4908d80178b605136d4a3466a4fbfe0c93

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-cp39-cp39-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.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 8f3fd5cfec3bba5deab8af4cc5acfbbb0af24c157c1bac378301dba0e072d23c
MD5 13dad1aeed4f65d45b2605bd3a22a9bf
BLAKE2b-256 a66258b5aa3533f1dad58ec970b5cbedcaf0d11a178c1502d414a73a8765afc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-cp39-cp39-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.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 1bbc260a7961e7c243328976dcb4c192da47ed7468e587126e2f58e5279ab0c0
MD5 a72258b530cb9ccb3ed7b6dcb279cd1f
BLAKE2b-256 04b990cd2f4465a5d0a3791defec7c299a7f978bbf347b98cea7711cbbc0db9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-cp39-cp39-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.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 abb034e0926c6a8531d7b2a65ddddffd96dfde3d83bd0e149da08d63ddbea487
MD5 2f654f3fbaa09223ac331887a85b6280
BLAKE2b-256 f95a523a227de25dc73b92c514f53a561f4e6612bdbed50679cd62cdf548205f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.0-cp39-cp39-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