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.2.tar.gz (57.8 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.2-cp314-cp314-manylinux_2_34_x86_64.whl (203.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ x86-64

rtpsynth-1.3.2-cp314-cp314-manylinux_2_34_s390x.whl (204.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ s390x

rtpsynth-1.3.2-cp314-cp314-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (197.1 kB view details)

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

rtpsynth-1.3.2-cp314-cp314-manylinux_2_34_ppc64le.whl (218.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ ppc64le

rtpsynth-1.3.2-cp314-cp314-manylinux_2_34_i686.whl (203.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ i686

rtpsynth-1.3.2-cp314-cp314-manylinux_2_34_aarch64.whl (206.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ ARM64

rtpsynth-1.3.2-cp314-cp314-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl (208.4 kB view details)

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

rtpsynth-1.3.2-cp314-cp314-manylinux_2_28_i686.whl (203.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

rtpsynth-1.3.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (206.7 kB view details)

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

rtpsynth-1.3.2-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (211.0 kB view details)

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

rtpsynth-1.3.2-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (223.8 kB view details)

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

rtpsynth-1.3.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (210.9 kB view details)

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

rtpsynth-1.3.2-cp313-cp313-manylinux_2_34_x86_64.whl (203.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ x86-64

rtpsynth-1.3.2-cp313-cp313-manylinux_2_34_s390x.whl (205.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ s390x

rtpsynth-1.3.2-cp313-cp313-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (196.7 kB view details)

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

rtpsynth-1.3.2-cp313-cp313-manylinux_2_34_ppc64le.whl (217.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ ppc64le

rtpsynth-1.3.2-cp313-cp313-manylinux_2_34_i686.whl (202.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ i686

rtpsynth-1.3.2-cp313-cp313-manylinux_2_34_aarch64.whl (206.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ ARM64

rtpsynth-1.3.2-cp313-cp313-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl (208.3 kB view details)

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

rtpsynth-1.3.2-cp313-cp313-manylinux_2_28_i686.whl (203.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

rtpsynth-1.3.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (207.0 kB view details)

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

rtpsynth-1.3.2-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (211.7 kB view details)

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

rtpsynth-1.3.2-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (223.4 kB view details)

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

rtpsynth-1.3.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (210.8 kB view details)

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

rtpsynth-1.3.2-cp312-cp312-manylinux_2_34_x86_64.whl (203.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ x86-64

rtpsynth-1.3.2-cp312-cp312-manylinux_2_34_s390x.whl (205.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ s390x

rtpsynth-1.3.2-cp312-cp312-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (196.4 kB view details)

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

rtpsynth-1.3.2-cp312-cp312-manylinux_2_34_ppc64le.whl (217.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ ppc64le

rtpsynth-1.3.2-cp312-cp312-manylinux_2_34_i686.whl (202.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ i686

rtpsynth-1.3.2-cp312-cp312-manylinux_2_34_aarch64.whl (206.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ ARM64

rtpsynth-1.3.2-cp312-cp312-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl (208.1 kB view details)

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

rtpsynth-1.3.2-cp312-cp312-manylinux_2_28_i686.whl (202.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

rtpsynth-1.3.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (206.7 kB view details)

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

rtpsynth-1.3.2-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (211.5 kB view details)

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

rtpsynth-1.3.2-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (223.1 kB view details)

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

rtpsynth-1.3.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (210.5 kB view details)

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

rtpsynth-1.3.2-cp311-cp311-manylinux_2_34_x86_64.whl (200.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ x86-64

rtpsynth-1.3.2-cp311-cp311-manylinux_2_34_s390x.whl (202.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ s390x

rtpsynth-1.3.2-cp311-cp311-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (195.3 kB view details)

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

rtpsynth-1.3.2-cp311-cp311-manylinux_2_34_ppc64le.whl (216.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ ppc64le

rtpsynth-1.3.2-cp311-cp311-manylinux_2_34_i686.whl (202.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ i686

rtpsynth-1.3.2-cp311-cp311-manylinux_2_34_aarch64.whl (204.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ ARM64

rtpsynth-1.3.2-cp311-cp311-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl (205.6 kB view details)

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

rtpsynth-1.3.2-cp311-cp311-manylinux_2_28_i686.whl (202.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

rtpsynth-1.3.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (203.6 kB view details)

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

rtpsynth-1.3.2-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (208.3 kB view details)

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

rtpsynth-1.3.2-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (221.8 kB view details)

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

rtpsynth-1.3.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (208.4 kB view details)

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

rtpsynth-1.3.2-cp310-cp310-manylinux_2_34_x86_64.whl (197.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ x86-64

rtpsynth-1.3.2-cp310-cp310-manylinux_2_34_s390x.whl (198.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ s390x

rtpsynth-1.3.2-cp310-cp310-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (192.4 kB view details)

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

rtpsynth-1.3.2-cp310-cp310-manylinux_2_34_ppc64le.whl (213.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ ppc64le

rtpsynth-1.3.2-cp310-cp310-manylinux_2_34_i686.whl (198.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ i686

rtpsynth-1.3.2-cp310-cp310-manylinux_2_34_aarch64.whl (200.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ ARM64

rtpsynth-1.3.2-cp310-cp310-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl (202.3 kB view details)

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

rtpsynth-1.3.2-cp310-cp310-manylinux_2_28_i686.whl (198.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ i686

rtpsynth-1.3.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (200.5 kB view details)

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

rtpsynth-1.3.2-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (205.0 kB view details)

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

rtpsynth-1.3.2-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (218.4 kB view details)

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

rtpsynth-1.3.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (205.2 kB view details)

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

File details

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

File metadata

  • Download URL: rtpsynth-1.3.2.tar.gz
  • Upload date:
  • Size: 57.8 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.2.tar.gz
Algorithm Hash digest
SHA256 3ef58adf47797733cf8ce0f5b18b803676b91333418fd91c166f4e3b4bd6fcb6
MD5 65498742a1df0cb13499179de8ac7e82
BLAKE2b-256 a8199e45383a91af5ecf8f1be04b746eb06953e9eebdf258170bbf3d926f8301

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.2.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.2-cp314-cp314-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp314-cp314-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 480dc41edb691d1267817b2bbde25c1f60f4522c5a6b1682f4b7f26dcc554203
MD5 bae8e25584aa7be6bd15cb240cc05e89
BLAKE2b-256 f836ed198ea9b7ceb2803dad3522b3815dd7501e437b3426c957353eb8a1da6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.2-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.2-cp314-cp314-manylinux_2_34_s390x.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp314-cp314-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 272bc3b699f6e8e32f1f19a943f202f8486efe6a36d2c9d86089ad2d96f15bbe
MD5 2da65425b81bd8972b979ae9caaa036d
BLAKE2b-256 c7f5e16579a99eece631e453b08a63b8e31e66dc88855d713a5b7f7c72cef924

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.2-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.2-cp314-cp314-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp314-cp314-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 54156dd16016c854e835c5355256c5b797e70a030c8c011b894fc01ee7aa72b1
MD5 aa59e73bcbd363e82f2938484d405c47
BLAKE2b-256 4ba2f3b219da6d5748ca17bdc7cc3e75bffee106205cc0814942b58a09f891e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.2-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.2-cp314-cp314-manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp314-cp314-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 f03f07e307ed64ea6fad5a62af95baec390015bc40eea3561f3dd9cee8680efb
MD5 9f2f9ed755524fb48311cd7ab2de949d
BLAKE2b-256 c99ffef5d19424a40e0b0d6fa274a56d58c2f883cb9b8d1563b3299511d7c259

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.2-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.2-cp314-cp314-manylinux_2_34_i686.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp314-cp314-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 498ed043dbcf0ff1ff3e09dd2c75a72bfadad55a93e53cf67f2cc82e0c44bb66
MD5 6edd4f0bd6c8aa19541e2c25a68980b8
BLAKE2b-256 da391016386af9446beb0b9d015555697f47ff9f53f2b9d9436f9d5466774940

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.2-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.2-cp314-cp314-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp314-cp314-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 703ff41d0df6cd3f66857e618942e71131bb4ac1340dacfbc4ee8858a097f135
MD5 019981549a1c9979478cab4904bc4cd6
BLAKE2b-256 a5d8ba8a9b13e149e7b418355b15416f41586217ab6d168249c3950b7dca8cc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.2-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.2-cp314-cp314-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp314-cp314-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 1f042c43f24634bc95e81ac18e928b81d879d4cd4ae8686783f09a3f2f0a9499
MD5 eda94c3c982767e6838ae9d34b4ad3f0
BLAKE2b-256 97833d67456de15adb137e82c5dff19e6c976b49b6b10e0fb0b3111dfb13a431

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.2-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.2-cp314-cp314-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 9427b817afccf3ca05f0c67db588c7335d50bccb943571c61a8faf5f29b0abe4
MD5 8d2090e2f3f9febac38ab2e54da2dbc7
BLAKE2b-256 aa901797ead3e5e4c8f01705e5fe4a9091db64a07159d51c31c0d7cc576ab73b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.2-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.2-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.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d870e045699134a689114c17550d0cc19ec191400c3f59448e606668a33b8ba6
MD5 b15fefe45815d7f18f36595694f1e0f2
BLAKE2b-256 106ebfd2e2287b1cb4e6895d35a207476810366322b33be0eca9ccc3759b4078

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.2-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.2-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 f7a41836b60920b913c1891e187851678dc3a9e778f5c2d7a05af8640cea4bdd
MD5 068adc6811e388c56f4d8e76433fac13
BLAKE2b-256 b281f3f53d0755eb36da0625346add22b50f51014319a0cf7169629f3eb6d60b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.2-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.2-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 14408ba99252126ab6e19030d6890a47488a6731e62f5dc61168662e12188dff
MD5 90db6a6d5db3865001d087fdcc3c1fe4
BLAKE2b-256 42be9fc3a34cfb6c7696353cb36a0f12b7b4bd7460aac42fc3caddd063540c22

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.2-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.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bea9e7be7bdd1c65d4aa828376abf65ad76de770fb0f721b4c46fdcbfe9c3d0a
MD5 5db5386d9780420c4796ce6ab8445fe3
BLAKE2b-256 2ec2394efddea67ede0abc29c5036900f72cdf91e5fbb1228a97efea93c80e68

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp313-cp313-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 97cd8fa1895ef76bf961be32d0f6db044f631d701efc0083e7d5388775540ba8
MD5 1a51ba9c3a541f69ed50aa3d16546bda
BLAKE2b-256 ebe95aa551c89d4b7ca3b0c6e4044c2e0f1a16fdb527c933c10b4e59dc3ebe54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp313-cp313-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 c6cc783bd5eac5950041e75b3786c04b40428fc5da945d26947e990fb435b6c6
MD5 d2edea65b65ec2fb4593d8b95c362fe9
BLAKE2b-256 d5929a0f6e2506f880eb792eb58b70f5655097df1609021ff60a9593986a96fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp313-cp313-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 b71362531774d5969e01af8898d6833b08f4bbad346608358f7a638f9e17ff00
MD5 a46f69a43934e64c4b8d35d4e3178710
BLAKE2b-256 60e95178285d67bfc716cb6d2d937b00d68ce49861138d6ccc0d11a82702ba98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp313-cp313-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 d0e009c3680d125a2fd4c8d2f8321abf980b8d23f8f30527c5b23e9e9389a381
MD5 71d88b39496c279815c14dea2f99c8ca
BLAKE2b-256 529dd9d22e26c0cf27c3e88cc082e8779eeb3a24f39da82b1ac4e1a83805bdc2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp313-cp313-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 4d5330eb286d92f75fc1e8ba5364aa2a89744e9ae93f48d6b1e75f5f9ae33195
MD5 b6f5884736c9f7df7d4b17faf3706c21
BLAKE2b-256 12b1aa95a4c2cd67e3c7c7604cd7730b39f70c65ca3f3cc943a9cbe0c912bbbc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp313-cp313-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 fed7f21d73922d685510506f537e731b6f51caa168f43943fcba7af6dd13b5de
MD5 f2626ac818985df609fb0fb78c8b845a
BLAKE2b-256 b08bc8410d1a6e2097f1c29860ae619bff8a6ce55a7e0a87587c43a691b7600c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp313-cp313-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 fdb8ce18965f0029a92a0f5240e28d07868f222f1bf45b39514e68c91beeafe1
MD5 8f87c5fbd87ade28b841eb02e75dff4d
BLAKE2b-256 a3edd6c5527a55ad6174c83500324e4b665881d18bd992d43c0ec212491cd1dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 e24543e0cd142e3a7f6db2dcc3da9d6507f6267d603c21192c2f68ae2951e6f5
MD5 ffb2ca794095f4df8700afb4159f0642
BLAKE2b-256 898d7c7dab58a2845ad812651efd92511497378c3a8379bf42215af294a5eccc

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.2-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.2-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.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 914aa9803a29eb479a113927c6ca77bee08fc0e0071bd88e416d1d02175f44db
MD5 c4d4428469d3ea63186d3c8803c9091e
BLAKE2b-256 ab3e534a8c491ff1998a3755d09ba78c991d2c7b8e3f329e04f34ae40f5e97b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 fb058cba79b57312968d16f3c02c409f5cddd1cde02d9b064db08b4a5f809626
MD5 81e681a924e1de1369314effd1debb94
BLAKE2b-256 e390c66c8bd7f7844c76ca659114a6c08fe1629c02e402b24dd61999dad00866

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 0adec4b04b5c9d615dd660376666acb80fb4b89fc79a4072f685355fc0c85080
MD5 2162217065eff8ca09d6d93481ebb9b3
BLAKE2b-256 85af8b04feedc890f6f1956f6d108ccef8dfbdc7394efed6fce267293ec41371

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c47d5569ffde92536cb74931fba07e4dd1e2f8439d38965d99ce15533843a5b0
MD5 492b634be476d083377936c77d37c478
BLAKE2b-256 4f4a236861f0fc748707fceab64037919010cd6aee3ca245a36cf91fe33562aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp312-cp312-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 adee05edcd7bc09da47b1c2bf7ce92d59aca2b22ad5114c56655e6df58276b6e
MD5 d03764929c005e63db308278a1ee63ee
BLAKE2b-256 38d66172972dd256c2543588027111bac0df7d68df3cdddcc869afeb330b1055

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp312-cp312-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 9984ff254a1325fa973af295a5496f41e661ca25fad7aa3a97f28822386a91cb
MD5 5ab997240aa1de5914f958b4debba788
BLAKE2b-256 2865a2e0ad53842bace300a890e509b72512c8b7e7e0bbc30640fe28b089c477

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp312-cp312-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 26179b5edd8c07ee9192106ff7b4b52a50739de9e850222a1fe6847698b45829
MD5 becae31d7f3fa08ae7873eaa9f74c458
BLAKE2b-256 fa87a437f0ff5a0d26056c79af598f7d5317c91570cb3c8732c0d854f0221060

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp312-cp312-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 b6b9fe052f031dca800fb90e6448ffd003af3a178f04dc5c7166e2444a419ec4
MD5 148ec609a526c3bb99df5d518b96efa6
BLAKE2b-256 bf66613f1633641e71d4ecab21d67b36668d5dba29c7becc302acfbccd4c5717

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp312-cp312-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 4d438e7615ce1c5356e86bd297bb044c74edb24c1740c600448b91f1bb934767
MD5 e854a1d1f9c9411a2d1d106349f07104
BLAKE2b-256 9956dde26ab8f4e8c8189465a3cb41fe01f8cb756ede9501d8af0ba276c3e3a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp312-cp312-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 316be30cd999b5517fb0dccb76f032aa096754bc1fe0361e0ef114388d748762
MD5 a96bf71426ed782d058b18104fbb5ed6
BLAKE2b-256 c9c7821d50c4bffc3e228e3026a167d9c2447feb30c8875524a8c77a776a3192

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp312-cp312-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 8cf480fa38e1440708d44a8f1fcd9f8bde6d8d16018ed936b47d01e314406ce3
MD5 7f09c3a69276bca0f118a7c00e57884d
BLAKE2b-256 498aaa9b09f68ee4afe3869915ae2ab0372f82557751e94d85608f0d5fec40bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 1a2cad218471f0b0f9e8d34bcd8f07738c7da4889cc3028ecc6535f45d6d7496
MD5 56dc425c3089808e5c77e6b227408752
BLAKE2b-256 d3e9268539da506b7f56531f5465aadc1fff3e50b2a22fcc5d81fa18a19bfe15

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.2-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.2-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.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 102e7403004cd2ff9a258dea223a9e9d3d92ea0a1c0a0233679e2cba88ae0716
MD5 eb209b106e188bfdd97dd47e40032e4a
BLAKE2b-256 64de7dabea1fc6fa33079430b43b8450889b59713495e920f63eec2cd5e3728a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 d7a295d0f9137f324afabc3fb750e76bc58b94a72d56d7b496a73808d3d6e99c
MD5 e6e0c47116da4fbbe419da98d9fbd7f7
BLAKE2b-256 acd7a10c12f5261f514b1b9f4ad5391a2b0224e295681f8a2be58be09bedf18a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 51612e16b6930f5d90bceca8c80583f141d870779eae32948c963b2fc8a18e4f
MD5 1b143bcdd4e3e016fce267bb7775c75e
BLAKE2b-256 669097db2ce0278ac2b6e7ae05c3c7276dca20bc0eb93075e39be9fe556c7b66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b02d1247f369286d1a4cdfc43196f5a78b72d082e3d732bc220735768c94c2f1
MD5 4826f7ce039c0dded31fa1a3927e0bc9
BLAKE2b-256 203511c5c91901bc3ee4abbfa0465b4d0fe57acc0d967b8f871afd8fb69067db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp311-cp311-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 9590ff990380c27ced9ff09d85cf1363cb4f779c3d99b2b197fd8edce7c58ecd
MD5 8040e2d800378035ddcd6406d838a9da
BLAKE2b-256 c866d28da8870ab1ca6b2d2fd7f44b1bd5fd5ce1f83f93b4aee6ece476c59df4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp311-cp311-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 0b0031a1a727e09a69dbed39063e515eed91542704b7bb9e3f1fb70c51c63566
MD5 dfd9ea62ff2c7f09f89efac7dc9b7c46
BLAKE2b-256 9bbe16ca22462d97b6b63206f1b110cf090cc6e23ec21c60ca707f692314e406

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp311-cp311-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 77008201adb586b2c893dadd46ea576df602d03a09b6c14d867014e5dd75b355
MD5 8d3d36aeb69c52de6078f1f38ebe9c06
BLAKE2b-256 1c42ff4af3990d7a655e905330b18f5394b5cee4e1b3a5c1c621520d59e2d5c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp311-cp311-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 6ca93b54512b52d62ec6b20ede8112cf8f501fad79567cf8626eaef8dfe054e5
MD5 7757d9909e56ed64781ef18c9c26eb3a
BLAKE2b-256 4b7afb7e9efe35b885619c5512b0f568699d894c4d4a4cce0f8a832052952ebc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp311-cp311-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 68cb31bd795667262caafd9737396d8dbd13ad9839ca1045565e90041d538fef
MD5 e8d1562685fd6c06a19e559da42e280a
BLAKE2b-256 86287c50fdd206a036735e3485e6d711f9577702b80f25d928f6ea2dacdd5e57

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp311-cp311-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 480abf9ecc407ee063ba8ad1c2b93b2be75e2e21bfe6d7becdad4049f4b8280d
MD5 5f52ccf81439ca36f914cc8468c6ded4
BLAKE2b-256 f69b0188d72ceeda78d1cbc531fc074d212b6aeb4467d76105cdd4450da31921

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp311-cp311-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 5bb694ec85c6355b94b5a1e3cafb819b2a5e6f06b9f9ac3b424334f7bb58f7be
MD5 491f567c71884fa15b87b3bebbffe50b
BLAKE2b-256 6aa0476fe074e78bbb634ad02363e123e9023ea4f1b86661fe6d92d7dccefc93

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 652bfa183755670063c3cdb849726426a89a8dc909c9d605beb6e3947d412c11
MD5 7f0dc0d6dec5a78474fde99d2c6f846f
BLAKE2b-256 67a7836dcc53d439d890741503940941c37a650b253d79e392d35b03d3db6eeb

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.2-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.2-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.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8b6d45fd721db58d57a1cb162d2d764405dd4f82b4dc9477f274818aff37bd72
MD5 f57d4bb528721bbf046ae3463b5f4010
BLAKE2b-256 0142e56ccf6f0d33c0b6f76ce812da9ff3d9d4fa4548eaf153707cb02073812a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 00493564e6d45ec0acc34390144d20b32eef767723bc668c45d256b92cd83e11
MD5 eb4c773f4b88e89a0174eca3d66a5498
BLAKE2b-256 f0fafebd0bfd1f4bc9941b6a91e6bafc166096ae7d28455ee92461f3b1a90eba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 6be78dccc01e8f423bb48c661bcbc7cd6354513ca697123a442161349cfab4ba
MD5 52a2eb66d4b63541ee82f68d2b878b67
BLAKE2b-256 737e5b132f0a949a0990027739af380ac422243cd68be8ebcf4f99d50251970e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bc9582694726c371bba10a4e9e110a911bfdd00e738dde98ce9a2ce8b9c91e8c
MD5 27e67eb44e07b12b3b78519e0cb4a583
BLAKE2b-256 f4e782e8882320b8935364eeef74a34d6c14d5e535ff1f83c828fa8c156f6dab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp310-cp310-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 eb6bf351c728852b885aff805356aec64ddb4f119063c141684996b67614a383
MD5 74c3777b0fd75a673fb4542485831603
BLAKE2b-256 7054ac406365d3b586987d92a4e0698850099ee2cd1f7ca6775b5427bdd31955

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp310-cp310-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 19499a52d80cc2223038e02fe49253d6d3f100cac9199e487bc942141707fbb1
MD5 83c3f5fed7ef5294d43eccea8ae14720
BLAKE2b-256 d4a37817b2b48d53ad1b7caf44696c460d938b8fba6794aff675cefcbabac54a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp310-cp310-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 5374b0a24c8844605e3635b71e6ec5a8ea0e4f17c42a8b2956a1180456db1b62
MD5 91c447984b28a288481d8566390eab97
BLAKE2b-256 6005db4b3341787e5b622e0676e5fc08a3cd9542dcea9ba629615a47746b1a23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp310-cp310-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 1a64a0174521cc51023454d512dd8081176ed64b9224f029ffda09473ba9ef8e
MD5 183d36200b550cd2a129e86de41fe20c
BLAKE2b-256 7ce39ea2b7c6d857f8eeba4f427e099d65305972aa35da098dd9c8d11d9bfbaa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp310-cp310-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 5695a1078a24ce5edb393ad6ad7b4da09e837f47f7ae5a79e6ac8aac57cc6f8d
MD5 dedf21e427e7fb24f92fae349e2e06da
BLAKE2b-256 ad1579d5928eb218f6311fd19f4f8af7b219c86b455ebc0958c1c4379114b913

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp310-cp310-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 fa4b3f0f9adac23c69da1dc5fcf575dd82c1612fe4b288fd5119da40ea2e1524
MD5 852406dc23ced803c1dff26c12606e97
BLAKE2b-256 f8f738df2b29a969a724e6d331e0e7c2b589d769aee9f2931c30492171309fd2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp310-cp310-manylinux_2_34_aarch64.manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 bdcc2f934ca904e399e01b4897db616aef77c844f5fbbe900f3dbea5d9830cbb
MD5 539e25668ddf51933648a86254f5f9f2
BLAKE2b-256 5219b091b0ccd5997b9084022464e785e661e4b659f707c2234dd84458bc9b62

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp310-cp310-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 fd9ec5d7cffc5131d3493fdc1ff0ee937c8889bdc3d6ff81728cf57ce592bb8c
MD5 0951c0fc393d7afb25957eb0ce4ea0cf
BLAKE2b-256 20ca6289f641709b9766b7310f5267eecaf0208c643719131f6f49ceb66d6957

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtpsynth-1.3.2-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.2-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.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 77db84bc4f00ccf7fb7b12007134c76df243f47bc0603507545538347e068fd0
MD5 c539a1d75ad3d3714405e04adc8abc73
BLAKE2b-256 4c25b5d543a24fa7f0656c5211181372956769a205ee9d81a5dba71448e1fb68

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 8f445f09c72e911104b5b06105c0f47e0ff3ea6d114f13873320f7b40e13996d
MD5 36e5a050f0bf0a195422aa18a5e4c21d
BLAKE2b-256 d4035efd960d8577a1cc6b8eab095a5adc1c73038c1bd20054b3df7a129fa06b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 7f51495801b3095168c421b83a2d2385b692322df57bb6bf694f6d3081aa181d
MD5 f03b974c3f1530fc5b3028544f29226c
BLAKE2b-256 e070c9c6dacde5723bdc7e4c827adddb87489cbfe517a14987ff9e52bb5325ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtpsynth-1.3.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 361ae681db4d9f72543861ef09c9d1534bce4c9b96150beb3418d8565b315a7d
MD5 bf310ffa716075d7b5d75e0a3ae26fa4
BLAKE2b-256 56077ec1c8a21ee0a1f7d8e0dd815515b16c668ffac8c0ebb7e0e26fda0068e6

See more details on using hashes here.

Provenance

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