@ -1,149 +0,0 @@ | |||
/* Mu-law code from Linux kernel | |||
* Copyright (c) 1999 by Jaroslav Kysela <perex@perex.cz> | |||
* Uros Bizjak <uros@kss-loka.si> | |||
* Copyright Jeroen Vreeken (jeroen@vreeken.net), 2017 | |||
* | |||
* Based on reference implementation by Sun Microsystems, Inc. | |||
* | |||
* This library is free software; you can redistribute it and/or modify | |||
* it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of | |||
* the License, or (at your option) any later version. | |||
* | |||
* This program is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |||
* GNU Library General Public License for more details. | |||
* | |||
* You should have received a copy of the GNU Library General Public | |||
* License along with this library; if not, write to the Free Software | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |||
* | |||
*/ | |||
#include "ulaw.h" | |||
#define BIAS (0x84) /* Bias for linear code. */ | |||
#define SIGN_BIT (0x80) /* Sign bit for a u-law byte. */ | |||
#define QUANT_MASK (0xf) /* Quantization field mask. */ | |||
#define NSEGS (8) /* Number of u-law segments. */ | |||
#define SEG_SHIFT (4) /* Left shift for segment number. */ | |||
#define SEG_MASK (0x70) /* Segment field mask. */ | |||
static inline int val_seg(int val) | |||
{ | |||
int r = 0; | |||
val >>= 7; | |||
if (val & 0xf0) { | |||
val >>= 4; | |||
r += 4; | |||
} | |||
if (val & 0x0c) { | |||
val >>= 2; | |||
r += 2; | |||
} | |||
if (val & 0x02) | |||
r += 1; | |||
return r; | |||
} | |||
/* | |||
* linear2ulaw() - Convert a linear PCM value to u-law | |||
* | |||
* In order to simplify the encoding process, the original linear magnitude | |||
* is biased by adding 33 which shifts the encoding range from (0 - 8158) to | |||
* (33 - 8191). The result can be seen in the following encoding table: | |||
* | |||
* Biased Linear Input Code Compressed Code | |||
* ------------------------ --------------- | |||
* 00000001wxyza 000wxyz | |||
* 0000001wxyzab 001wxyz | |||
* 000001wxyzabc 010wxyz | |||
* 00001wxyzabcd 011wxyz | |||
* 0001wxyzabcde 100wxyz | |||
* 001wxyzabcdef 101wxyz | |||
* 01wxyzabcdefg 110wxyz | |||
* 1wxyzabcdefgh 111wxyz | |||
* | |||
* Each biased linear code has a leading 1 which identifies the segment | |||
* number. The value of the segment number is equal to 7 minus the number | |||
* of leading 0's. The quantization interval is directly available as the | |||
* four bits wxyz. * The trailing bits (a - h) are ignored. | |||
* | |||
* Ordinarily the complement of the resulting code word is used for | |||
* transmission, and so the code word is complemented before it is returned. | |||
* | |||
* For further information see John C. Bellamy's Digital Telephony, 1982, | |||
* John Wiley & Sons, pps 98-111 and 472-476. | |||
*/ | |||
static uint8_t linear2ulaw(int16_t pcm_val) /* 2's complement (16-bit range) */ | |||
{ | |||
int mask; | |||
int seg; | |||
unsigned char uval; | |||
/* Get the sign and the magnitude of the value. */ | |||
if (pcm_val < 0) { | |||
pcm_val = BIAS - pcm_val; | |||
mask = 0x7F; | |||
} else { | |||
pcm_val += BIAS; | |||
mask = 0xFF; | |||
} | |||
if (pcm_val > 0x7FFF) | |||
pcm_val = 0x7FFF; | |||
/* Convert the scaled magnitude to segment number. */ | |||
seg = val_seg(pcm_val); | |||
/* | |||
* Combine the sign, segment, quantization bits; | |||
* and complement the code word. | |||
*/ | |||
uval = (seg << 4) | ((pcm_val >> (seg + 3)) & 0xF); | |||
return uval ^ mask; | |||
} | |||
/* | |||
* ulaw2linear() - Convert a u-law value to 16-bit linear PCM | |||
* | |||
* First, a biased linear code is derived from the code word. An unbiased | |||
* output can then be obtained by subtracting 33 from the biased code. | |||
* | |||
* Note that this function expects to be passed the complement of the | |||
* original code word. This is in keeping with ISDN conventions. | |||
*/ | |||
static int16_t ulaw2linear(uint8_t u_val) | |||
{ | |||
int t; | |||
/* Complement to obtain normal u-law value. */ | |||
u_val = ~u_val; | |||
/* | |||
* Extract and bias the quantization bits. Then | |||
* shift up by the segment number and subtract out the bias. | |||
*/ | |||
t = ((u_val & QUANT_MASK) << 3) + BIAS; | |||
t <<= ((unsigned)u_val & SEG_MASK) >> SEG_SHIFT; | |||
return ((u_val & SIGN_BIT) ? (BIAS - t) : (t - BIAS)); | |||
} | |||
void ulaw_decode(int16_t *samples, uint8_t *ulaw, int nr) | |||
{ | |||
int i; | |||
for (i = 0; i < nr; i++) { | |||
samples[i] = ulaw2linear(ulaw[i]); | |||
} | |||
} | |||
void ulaw_encode(uint8_t *ulaw, int16_t *samples, int nr) | |||
{ | |||
int i; | |||
for (i = 0; i < nr; i++) { | |||
ulaw[i] = linear2ulaw(samples[i]); | |||
} | |||
} |
@ -1,27 +0,0 @@ | |||
/* | |||
Copyright Jeroen Vreeken (jeroen@vreeken.net), 2017 | |||
This program is free software: you can redistribute it and/or modify | |||
it under the terms of the GNU General Public License as published by | |||
the Free Software Foundation, either version 3 of the License, or | |||
(at your option) any later version. | |||
This program is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |||
GNU General Public License for more details. | |||
You should have received a copy of the GNU General Public License | |||
along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
*/ | |||
#ifndef _INCLUDE_ULAW_H_ | |||
#define _INCLUDE_ULAW_H_ | |||
#include <stdint.h> | |||
void ulaw_decode(int16_t *samples, uint8_t *ulaw, int nr); | |||
void ulaw_encode(uint8_t *ulaw, int16_t *samples, int nr); | |||
#endif /* _INCLUDE_ULAW_H_ */ |
@ -0,0 +1,33 @@ | |||
#ifndef _DML_WASM_STUB_ECDSA_H_ | |||
#define _DML_WASM_STUB_ECDSA_H_ | |||
#include <openssl/ossl_typ.h> | |||
void EC_KEY_free(EC_KEY *key); | |||
typedef struct ECDSA_SIG_st { | |||
BIGNUM *r; | |||
BIGNUM *s; | |||
} ECDSA_SIG; | |||
static inline int ECDSA_do_verify(const unsigned char *dgst, int dgst_len, const ECDSA_SIG *sig, EC_KEY *eckey) | |||
{ | |||
return 0; | |||
} | |||
static inline ECDSA_SIG *ECDSA_SIG_new(void) | |||
{ | |||
return NULL; | |||
} | |||
static inline ECDSA_SIG *ECDSA_do_sign(const unsigned char *dgst, int dgst_len, EC_KEY *eckey) | |||
{ | |||
return NULL; | |||
} | |||
static inline void ECDSA_SIG_free(ECDSA_SIG *sig) | |||
{ | |||
} | |||
#endif |
@ -0,0 +1,9 @@ | |||
#ifndef _DML_WASM_STUB_ERR_H_ | |||
#define _DML_WASM_STUB_ERR_H_ | |||
static inline unsigned long ERR_get_error(void) | |||
{ | |||
return 0; | |||
} | |||
#endif |
@ -0,0 +1,24 @@ | |||
#ifndef _DML_WASM_STUB_EVP_H_ | |||
#define _DML_WASM_STUB_EVP_H_ | |||
#include <openssl/ossl_typ.h> | |||
static inline void OpenSSL_add_all_algorithms(void) | |||
{ | |||
} | |||
static inline void EVP_PKEY_free(EVP_PKEY *pkey) | |||
{ | |||
} | |||
static inline int EVP_PKEY_bits(const EVP_PKEY *pkey) | |||
{ | |||
return 0; | |||
} | |||
static inline struct ec_key_st *EVP_PKEY_get1_EC_KEY(EVP_PKEY *pkey) | |||
{ | |||
return NULL; | |||
} | |||
#endif |
@ -0,0 +1,34 @@ | |||
#ifndef _DML_WASM_STUB_OSSL_TYP_H_ | |||
#define _DML_WASM_STUB_OSSL_TYP_H_ | |||
typedef struct x509_st X509; | |||
typedef struct x509_store_st X509_STORE; | |||
typedef struct x509_store_ctx_st X509_STORE_CTX; | |||
typedef struct ec_key_st EC_KEY; | |||
typedef struct evp_pkey_st EVP_PKEY; | |||
typedef struct bignum_st {} BIGNUM; | |||
#define STACK_OF(type) struct stack_st_##type | |||
STACK_OF(X509); | |||
#define BN_num_bytes(a) 0 | |||
static inline BIGNUM *BN_bin2bn(const unsigned char *s, int len, BIGNUM *ret) | |||
{ | |||
return NULL; | |||
} | |||
static inline int BN_bn2bin(const BIGNUM *a, unsigned char *to) | |||
{ | |||
return 0; | |||
} | |||
#endif /* _DML_WASM_STUB_OSSL_TYP_H_ */ |
@ -0,0 +1,16 @@ | |||
#ifndef _DML_WASM_STUB_PEM_H_ | |||
#define _DML_WASM_STUB_PEM_H_ | |||
#include <openssl/ossl_typ.h> | |||
static inline EVP_PKEY *PEM_read_PrivateKey(void *fp, void *a, void *b, void *c) | |||
{ | |||
return NULL; | |||
} | |||
static inline X509 *PEM_read_X509(void *fp, void *a, void *b, void *c) | |||
{ | |||
return NULL; | |||
} | |||
#endif |
@ -0,0 +1,25 @@ | |||
#ifndef _DML_WASM_STUB_SHA_H_ | |||
#define _DML_WASM_STUB_SHA_H_ | |||
#define SHA256_DIGEST_LENGTH 32 | |||
typedef struct { | |||
} SHA256_CTX; | |||
static inline int SHA256_Init(SHA256_CTX *c) | |||
{ | |||
return 0; | |||
} | |||
static inline int SHA256_Update(SHA256_CTX *c, const void *data, size_t len) | |||
{ | |||
return 0; | |||
} | |||
static inline int SHA256_Final(unsigned char *md, SHA256_CTX *c) | |||
{ | |||
return 0; | |||
} | |||
#endif /* _DML_WASM_STUB_SHA_H_ */ |
@ -0,0 +1,91 @@ | |||
#ifndef _DML_WASM_STUB_X509_H_ | |||
#define _DML_WASM_STUB_X509_H_ | |||
#include <openssl/ossl_typ.h> | |||
static inline void X509_free(void *a) | |||
{ | |||
} | |||
X509_STORE *X509_STORE_new(void) | |||
{ | |||
return NULL; | |||
} | |||
static inline void X509_STORE_free(X509_STORE *a) | |||
{ | |||
} | |||
static inline int X509_STORE_load_locations(X509_STORE *ctx, const char *file, const char *dir) | |||
{ | |||
return 0; | |||
} | |||
X509_STORE_CTX *X509_STORE_CTX_new(void) | |||
{ | |||
return NULL; | |||
} | |||
static inline void X509_STORE_CTX_free(X509_STORE_CTX *ctx) | |||
{ | |||
} | |||
static inline int X509_STORE_CTX_init(X509_STORE_CTX *ctx, X509_STORE *store, X509 *x509, STACK_OF(X509) *chain) | |||
{ | |||
return 0; | |||
} | |||
static inline EVP_PKEY *X509_get_pubkey(X509 *x) | |||
{ | |||
return NULL; | |||
} | |||
static inline void *sk_X509_new_null(void) | |||
{ | |||
return NULL; | |||
} | |||
static inline void sk_X509_free(void *x) | |||
{ | |||
} | |||
static inline void sk_X509_push(void *x, void *y) | |||
{ | |||
} | |||
static inline void *sk_X509_pop(void *x) | |||
{ | |||
return NULL; | |||
} | |||
static inline X509 *d2i_X509(X509 **a, const unsigned char **pp, long length) | |||
{ | |||
return NULL; | |||
} | |||
static inline int i2d_X509(X509 *a, unsigned char **pp) | |||
{ | |||
return 0; | |||
} | |||
static inline int sk_X509_num(void *a) | |||
{ | |||
return 0; | |||
} | |||
static inline int X509_verify_cert(X509_STORE_CTX *ctx) | |||
{ | |||
return 0; | |||
} | |||
static inline void * sk_X509_value(void *ctx, int i) | |||
{ | |||
return NULL; | |||
} | |||
static inline int X509_check_host(X509 *cert, char *name, int a, int b, void *c) | |||
{ | |||
return 0; | |||
} | |||
#endif |