Universal algorithms for channel decoding of uncompressed sources


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News Universal algorithms for channel decoding of uncompressed sources
# 1  
Old 02-22-2008
Universal algorithms for channel decoding of uncompressed sources

HPL-2007-128 Universal algorithms for channel decoding of uncompressed sources - Ordentlich, Erik; Seroussi, Gadiel; Verdu, Sergio; Viswanathan, Krishnamurthy
Keyword(s): Channel Decoding, Denoising, Discrete Memoryless Channels, Universal algorithms, Lossless compression, Joint source-channel decoding, Soft decoding, Belief propagation.
Abstract: In many applications, an uncompressed source stream is systematically encoded by a channel code (which ignores the source redundancy) for transmission over a discrete memoryless channel. The decoder knows the channel and the code but does not know the source statistics. This paper proposes several u ...
Full Report

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. AIX

Disable any 96-bit HMAC Algorithms

Received a vulnerability - SSH INSECURE HMAC ALGORITHMS ENABLED. The solution was to Disable any 96-bit HMAC Algorithms. Disable any MD5-based HMAC Algorithms. Can someone please tell me how to disable in AIX 5.3? Thanks, Sudo (1 Reply)
Discussion started by: sudo su
1 Replies

2. Homework & Coursework Questions

UNIX internal Algorithms

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: Unix internal algorithms like namei() 2. Relevant commands, code, scripts, algorithms: System... (1 Reply)
Discussion started by: Phaneendra G
1 Replies

3. Shell Programming and Scripting

Compressing all directories inside a directory and remove the uncompressed version

hi pls give me a script to compress all directories inside a directory and remove the original uncompressed version... >> please also tell the single commmand to uncompress all the directories back...whemn needed (2 Replies)
Discussion started by: dll_fpga
2 Replies

4. Shell Programming and Scripting

Uncompressed files

Can anyone please help me how to find the list of uncompressed files in a directory and compress it. My requirement is to omit the previously compressed files. The directory may consist any type of file. say for eg, it may files with .txt extensions or .xls etc. Suggestions will be... (8 Replies)
Discussion started by: help_scr_seeker
8 Replies

5. Programming

Algorithms for Parallel Processing

Hey, I just wanted to know how many algorithms there are that cannot be accelerated by parallel processing. I know one such algorithm is Euclid's Algorithm (for GCF). does anyone know any other algorithms that cannot be accelerated by pp? if so please list the names and a general sentence of what... (2 Replies)
Discussion started by: azar.zorn
2 Replies

6. UNIX for Advanced & Expert Users

password hashing algorithms

I'm collecting some info on the password hashing algorithms in use on various Unix systems. So far I have: no $ legacy unix crypt $1$ MD5 $2$ Blowfish on BSD $2a$ alternate Blowfish on BSD $md5$ Sun's alternate MD5 $3$ a Microsoft hash $4$ not used? $5$ RedHat proposed Sha-256... (2 Replies)
Discussion started by: Perderabo
2 Replies

7. Shell Programming and Scripting

decoding commands

hi please can anyone help me in decoding shell commands. i need a way to decode the encrypted shell commands. (8 Replies)
Discussion started by: rochitsharma
8 Replies

8. Programming

implementation of all sorting algorithms using fork

im new to programming c in unix this is program written by me i want each and every child to do a seperate work such implement a different sorting algorithm but im not getting the way i wrote as below...plz help me how can i do that #include<stdio.h> main() { int i; for(i=0;i<5;i++)... (1 Reply)
Discussion started by: chaitu07
1 Replies
Login or Register to Ask a Question
CC_crypto(3cc)							       LOCAL							    CC_crypto(3cc)

NAME
Common Crypto -- libSystem digest library DESCRIPTION
The libSystem Common Crypto library implements a wide range of cryptographic algorithms used in various Internet standards. The services pro- vided by this library are used by the CDSA implementations of SSL, TLS and S/MIME. OVERVIEW
libSystem contains the Common Crypto collection of algorithms. Digest and encryption algorithms contained in this library are optimized for speed. The algorithms have been collected from various sources and chosen for their performance characteristics. Since libSystem is linked into all executables it is preferable for applications to use these functions rather than implementing their own versions. NOTES
To use the digest functions with existing code which uses the corresponding openssl functions, #define the symbol COMMON_DIGEST_FOR_OPENSSL in your client code (BEFORE including <CommonCrypto/CommonDigest.h> ). You can *NOT* mix and match functions operating on a given data type from the two implementations; i.e., if you do a CC_MD5_Init() on a CC_MD5_CTX object, do not assume that you can do an openssl-style MD5_Update() on that same context. The interfaces to the encryption and HMAC algorithms have a calling interface that is different from that provided by OpenSSL. HISTORY
The Common Crypto collection of functions started to become available in OS X 10.4 and later. SEE ALSO
CC_MD5(3cc), CC_SHA(3cc), CCHmac(3cc), CCCryptor(3cc) BSD
April 5, 2007 BSD