The Linux Standard Base (LSB) was created to lower the overall costs of supporting the Linux platform. By reducing the differences between individual Linux distributions, the LSB greatly reduces the costs involved with porting applications to different distributions, as well as lowers the cost and effort involved in after-market support of those applications.
Questions tagged [lsb]
55 questions
0
votes
2 answers
LSB from array of bytes C#
I need to select from an array of bytes an array of least significant bits into BitArray. I have code for searching lsb. But I don't know how add this array to BitArray
private static bool GetBit(byte b)
{
return (b & 1) != 0;
…

StacyS
- 23
- 1
- 6
0
votes
2 answers
Put invisible message in four part of image by using Raster
I found a tutorial from this website Steganography (it also include the code), and i want to put the four message into four difference part of image as i drew below link Four parties of image, but i am not sure how to exactly to put message to four…

Jarek Huang
- 119
- 3
- 17
0
votes
1 answer
error with "The matrix MSG in ENCODE must have K columns"
im working on a video steganography using LSB technique..im using traffic.avi and xylophone.mpg as the cover medium and when im using the licence.txt file (in the attach file) to encode into the video it runs well however when im using a short…

lisa adam
- 1
- 1
0
votes
3 answers
Is there a way to get the i(i changes) lsb from an int?
I'm working on a project in java recently and i would like to handle the bits of an integer so that i can check the i lsb of a number.
I have found a lot of approaches but nothing that can handle properly...
Example
key= 4
Key 4 in binary is 100
I…

Antifa
- 377
- 1
- 4
- 14
0
votes
1 answer
How i can create Bit Reversal ( from MSB->LSB to LSB->MSB) at Android?
I try to reverse my binary string.Any solution?
private OnClickListener btnConvListener = new OnClickListener() {
public void onClick(View v) {
try{
String ag=edittext1.getText().toString();
HexToBinary(ag);
…

user2342687
- 227
- 1
- 6
- 17
0
votes
1 answer
Looking for compiler for 32-bit LSB MIPS architecture
I want to copile a simple c program ("Hello world") for my Xtreamer prodigy. which runs a basic linux kernel:
/host # uname -a
Linux Prodigy 2.6.34-VENUS #30 PREEMPT Tue Feb 28 13:48:27 CST 2012 mips GNU/Linux
(it using chipset Realtek 1186)
I saw…

uriel
- 1,209
- 1
- 16
- 26
-1
votes
1 answer
steganography using DWT in python
I've been doing research on image steganography using DWT. here's my problem: i'm running a code in python and i already got the subbands coefficients of the cover image. but i don't know how to embed the secret image into the cover. A paper says…

Z98n
- 71
- 1
- 2
- 4
-1
votes
2 answers
Can't install or update redhat-lsb package for RHEL 5
I moved a daemon shell-script from a Devian server to a RHEL 5 server. The script now throws the error :
E: /lib/lsb/init-functions not found, lsb-base (>= 3.0-6) needed
The error in the script seems to come from here:
if ! [ -x…

gulden
- 505
- 1
- 7
- 13
-1
votes
1 answer
Conversion with Pointsers in C
I need to implement but I am not sure how can I as I am completely new into this. A function called get_values that has the prototype:
void get_values(unsigned int value, unsigned int *p_lsb, unsigned int *p_msb,
unsigned int…

ivesingh
- 31
- 1
- 2
- 3
-4
votes
1 answer
Get lowest bytes from an uint16_t in C
I want to get the lowest bytes of an uint16_t in C.
Example:
20544 = 0x5040
0x40 = 64
I tried, (X & ((1<<2) - 1)). This doesn't work for me.

c_prog_90
- 951
- 20
- 43