convert strings of characters to bitstring

조회 수: 7 (최근 30일)
Hussain
Hussain 2022년 10월 14일
댓글: Adam Danz 2022년 10월 15일
Please,
How to convert like this ( plaintext = 'wireless sensor networks, using lightweight cryptography in WSNs to provide security' ); each letter converte's to it's corresponding binary bits.
all the text to a string of bits and then I can split it to a sequence of (64-bit) block, each 64-bit use it as input Binary for cryptography algorithm?
appreciate your response

채택된 답변

Adam Danz
Adam Danz 2022년 10월 14일
Looking for dec2bin?
charvec = 'Example: converting char vector to binary.';
bin = dec2bin(charvec)
bin = 42×7 char array
'1000101' '1111000' '1100001' '1101101' '1110000' '1101100' '1100101' '0111010' '0100000' '1100011' '1101111' '1101110' '1110110' '1100101' '1110010' '1110100' '1101001' '1101110' '1100111' '0100000' '1100011' '1101000' '1100001' '1110010' '0100000' '1110110' '1100101' '1100011' '1110100' '1101111' '1110010' '0100000' '1110100' '1101111' '0100000' '1100010' '1101001' '1101110' '1100001' '1110010' '1111001' '0101110'
  댓글 수: 2
Hussain
Hussain 2022년 10월 15일
편집: Hussain 2022년 10월 15일
Thanks for your response, that's what I did exactly,
but how can I merge all (7-bit) that represnt characters in one (bit stream) in order to process it as a block.
for Example (1X294) cell
'100010111110001100001110110111100001101100 ....'
thanks a lot,
greetings
Adam Danz
Adam Danz 2022년 10월 15일
The transpose (bin') is important to include.
singleLine = reshape(bin',1,[])

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Characters and Strings에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by