APPENDIX- A REFERENCE IMPLEMENTATION OF BSF-128 ===============================================================

Size: px
Start display at page:

Download "APPENDIX- A REFERENCE IMPLEMENTATION OF BSF-128 ==============================================================="

Transcription

1 APPENDICES

2 A p p e n d i c e s P a g e 144

3 A p p e n d i c e s P a g e 145 APPENDIX- A REFERENCE IMPLEMENTATION OF BSF-128 =============================================================== REFERENCE IMPLEMENTATION OF STREAM CIPHER BSF-128 Filename: BSF128.c Author: Shadab Alam Dept. of Computer Science AMU, Aligarh India, s4shadab@gmail.com Synopsis: This file contains functions that implement the stream cipher BSF-128. It also implements functions specified by the ECRYPT API. / #include<stdio.h> #include "ecryptportable.h" #include "ecryptmachine.h" #include "ecryptconfig.h" #include "ecryptsync.h" #include "sbox.h" #include "multab.h" #define WORD unsigned short typedef enum false=0, true=1 bool; void ECRYPT_init(void) Function: bsf_keystream Synopsis Generates a new bit and updates the internal state of the cipher. / int mb = 1; u16 bsf_keystream(ecrypt_ctx ctx)

4 A p p e n d i c e s P a g e 146 u8 i,outbit1[8],outp; bool NBit,LBit; u16 outbit,ks; outbit1[0] = ctx->nfsr[31]; outbit1[1] = ctx->nfsr[59]; outbit1[2] = ctx->nfsr[75]; outbit1[3] = ctx->fcsr[21]; outbit1[4] = ctx->fcsr[39]; outbit1[5] = ctx->fcsr[51]; outbit1[6] = ctx->fcsr[73]; outbit1[7] = ctx->fcsr[120]; outp=0; for(i=0;i<8;i++) outp = outp outbit1[i];//outbit1[0]^outbit1[1]^outbit1[2]^outbit1[3]^outbit1[ 4]^outbit1[5]^outbit1[6]^outbit1[7] outp = outp<<1; Calculate feedback and output bits / //printf("outp=%x",outp); ks = SBox[outp]; outbit = (ks & 0xFF00) (((ks & 0x00FF)^outp) & 0x00FF); NBit=ctx->FCSR[0]^ctx->NFSR[0]^ctx->NFSR[26]^ctx- >NFSR[56]^ctx->NFSR[91]^ctx->NFSR[96]^(ctx->NFSR[3]&ctx- >NFSR[67])^(ctx->NFSR[11]&ctx->NFSR[13])^(ctx->NFSR[17]&ctx- >NFSR[18])^(ctx->NFSR[27]&ctx->NFSR[59])^(ctx->NFSR[40]&ctx- >NFSR[48])^(ctx->NFSR[61]&ctx->NFSR[65])^(ctx->NFSR[68]&ctx- >NFSR[84]); //NBit%=2; u8 sig = ctx->fcsr[0] + ctx->fcsr[99]+ ctx->fcsr[101]+ctx- >FCSR[126]+mb; LBit=sig%2; mb = (sig/2); //printf("nfsr:%x\tfcsr:%x\n",nbit,lbit); ctx->fcsr[0]^ctx->fcsr[7]^ctx->fcsr[38]^ctx->fcsr[70]^ctx- >FCSR[81]^ctx->FCSR[96]; / Update registers / for (i=1;i<(ctx->keysize);++i) ctx->nfsr[i-1]=ctx->nfsr[i]; ctx->fcsr[i-1]=ctx->fcsr[i]; ctx->nfsr[(ctx->keysize)-1]=nbit; ctx->fcsr[(ctx->keysize)-1]=lbit; return outbit; //Key Initialization void bsf_key_initialization(ecrypt_ctx ctx) u8 i,outbit1[8],outp;

5 A p p e n d i c e s P a g e 147 bool NBit,LBit,FBit; u16 outbit,ks; outbit1[0] = ctx->nfsr[31]; outbit1[1] = ctx->nfsr[59]; outbit1[2] = ctx->nfsr[75]; outbit1[3] = ctx->fcsr[21]; outbit1[4] = ctx->fcsr[39]; outbit1[5] = ctx->fcsr[51]; outbit1[6] = ctx->fcsr[73]; outbit1[7] = ctx->fcsr[120]; outp=0; for(i=0;i<8;i++) outp = outp outbit1[i];//outbit1[0]^outbit1[1]^outbit1[2]^outbit1[3]^outbit1[ 4]^outbit1[5]^outbit1[6]^outbit1[7] outp = outp<<1; Calculate feedback and output bits / //printf("outp=%x",outp); ks = SBox[outp]; outbit = (ks & 0xFF00) (((ks & 0x00FF)^outp) & 0x00FF); NBit=ctx->FCSR[0]^ctx->NFSR[0]^ctx->NFSR[26]^ctx- >NFSR[56]^ctx->NFSR[91]^ctx->NFSR[96]^(ctx->NFSR[3]&ctx- >NFSR[67])^(ctx->NFSR[11]&ctx->NFSR[13])^(ctx->NFSR[17]&ctx- >NFSR[18])^(ctx->NFSR[27]&ctx->NFSR[59])^(ctx->NFSR[40]&ctx- >NFSR[48])^(ctx->NFSR[61]&ctx->NFSR[65])^(ctx->NFSR[68]&ctx- >NFSR[84]); //NBit%=2; u8 sig = ctx->fcsr[0] + ctx->fcsr[99]+ ctx->fcsr[101]+ctx- >FCSR[126]+mb; FBit = ctx->fcsr[0]; LBit=sig%2; mb = (sig/2); //printf("nfsr:%x\tfcsr:%x\n",nbit,lbit); ctx->fcsr[0]^ctx->fcsr[7]^ctx->fcsr[38]^ctx->fcsr[70]^ctx- >FCSR[81]^ctx->FCSR[96]; / Update registers / for (i=1;i<(ctx->keysize);++i) ctx->nfsr[i-1]=ctx->nfsr[i]; ctx->fcsr[i-1]=ctx->fcsr[i]; ctx->nfsr[(ctx->keysize)-1]=nbit ^ (outbit & 0x1000); ctx->fcsr[(ctx->keysize)-1]=lbit ^ (outbit & 0x0001); //return outbit; Functions for the ECRYPT API / int powerr(int val,int times)

6 A p p e n d i c e s P a g e 148 int n = 1,i; for(i=0;i<times;i++) n=nval; return n; void ECRYPT_keysetup( ECRYPT_ctx ctx, const u8 key, u32 keysize, Key size in bits. / u32 ivsize) IV size in bits. / ctx->p_key=key; ctx->keysize=keysize; ctx->ivsize=ivsize; Function: ECRYPT_ivsetup Synopsis Load the key and perform initial clockings. Assumptions The key is 16 bytes and the IV is 16 bytes. The registers are loaded in the following way: NFSR[0] = lsb of key[0]... NFSR[7] = msb of key[0] NFSR[120] = lsb of key[16]... NFSR[127] = msb of key[16] FCSR[0] = lsb of IV[0]... FCSR[7] = msb of IV[0] FCSR[120] = lsb of key[16]... FCSR[127] = msb of key[16] / void ECRYPT_ivsetup( ECRYPT_ctx ctx, const u8 iv) u32 i,j; u16 outbit; load registers /

7 A p p e n d i c e s P a g e 149 //ctx->fcsr = iv; for (i=0;i<(ctx->keysize)/8 && i<16;++i) for (j=0;j<8;++j) ctx->nfsr[i8+j] = (ctx->p_key[i]>>j)&1; ctx->fcsr[i8+j]=((iv[i]>>j)&1); for (i=(ctx->keysize)/8;i<16;++i) for (j=0;j<8;++j) ctx->nfsr[i8+j]=((ctx->p_key[i]<<j)&1); ctx->fcsr[i8+j]=1; / do initial clockings / for (i=0;i<256;++i) bsf_key_initialization(ctx); int outputl = (u16)outbit & 0x0001; int outputm = (u16)outbit & 0x1000; //printf("\noutbit=%x\toutputl=%x\toutputm=%x",outbit,outputl,out putm); ctx->fcsr[127]^=outputl; ctx->nfsr[127]^=outputm; / Function: ECRYPT_keystream_bytes Synopsis Generate keystream in bytes. / void ECRYPT_keystream_bytes( ECRYPT_ctx ctx, u8 keystream, u32 msglen) u32 i,j; for (i = 0; i < msglen; ++i) for (j = 0; j < 8; ++j) keystream[i]=(bsf_keystream(ctx)); void ECRYPT_encrypt_bytes( ECRYPT_ctx ctx, const u8 plaintext,

8 A p p e n d i c e s P a g e 150 u8 ciphertext, u32 msglen) u32 i,j; u8 k=0; for (i=0;i<msglen;++i) k=0; for (j=0;j<8;++j) k =(bsf_keystream(ctx)<<j); ciphertext[i]=plaintext[i]^k; void ECRYPT_decrypt_bytes( ECRYPT_ctx ctx, const u8 ciphertext, u8 plaintext, u32 msglen) u32 i,j; u8 k=0; for (i=0;i<msglen;++i) k=0; for (j = 0; j < 8; ++j) k =(bsf_keystream(ctx)<<j); plaintext[i]=ciphertext[i]^k; int find_length(char input) //printf("%s", input); int length = 0; while(input[length]!='\0'); length++; // printf("%i", length); return length; void main() ECRYPT_ctx ctx; u8 plaintext; u8 ciphertext; u8 keystream; u32 msglen; u8 key;

9 A p p e n d i c e s P a g e 151 printf("enter Plain Text:"); scanf("%d",&plaintext); printf("key Stream:128 bit\n"); scanf("%d",&key); //int len = find_length(plaintext); printf("ffffff"); ECRYPT_keystream_bytes(&ctx," ",128); ECRYPT_keysetup(&ctx,"kkkkkkkkk",128,128); ECRYPT_encrypt_bytes(&ctx,"kkkkkkkkk",&ciphertext,128); printf("cipher=%d",ciphertext); /

10 A p p e n d i c e s P a g e 152 APPENDIX- B S-BOX USED IN BSF-128 =============================================================== #define WORD unsigned short WORD SBox[256] = 0xa3db, 0xd76e, 0x0966, 0x83d0, 0xf8be, 0x4858, 0xf611, 0xf4cf, 0xb314, 0x212d, 0x15a2, 0x78dd, 0x99f5, 0xb1c4, 0xafed, 0xf981, 0xe79b, 0x2daa, 0x4d40, 0x8a75, 0xce54, 0x4cd5, 0xcad5, 0x2e75, 0x522d, 0x951a, 0xd91a, 0x1e73, 0x4e4a, 0x387c, 0x442c, 0x28b3, 0x0a21, 0xdfb6, 0x02d4, 0xa03e, 0x1734, 0xf158, 0x6074, 0x682c, 0x1271, 0xb7f5, 0x7a76, 0xc391, 0xe9df, 0xfab5, 0x3d04, 0x532e, 0x96e2, 0x843b, 0x6b22, 0xba34, 0xf2a7, 0x63c8, 0x9afb, 0x1932, 0x7c2e, 0xaee5, 0xe540, 0xf5ad, 0xf727, 0x163e, 0x6a9a, 0xa2ee, 0x3919, 0xb68e, 0x7be1, 0x0ff9, 0xc1e9, 0x9348, 0x816a, 0x1bd0, 0xee85, 0xb4c9, 0x1a63, 0xea16, 0xd013, 0x9186, 0x2f7b, 0xb828, 0x559d, 0xb917, 0xdabc, 0x8541, 0x3f12, 0x4140, 0xbfc1, 0xe0cb, 0x5a4e, 0x588d, 0x80eb, 0x5f96, 0x663f, 0x0b58, 0xd882, 0x902f, 0x35dd, 0xd522, 0xc045, 0xa7a2, 0x33bc, 0x068a, 0x65a0, 0x6965, 0x4515, 0x00b6, 0x9422, 0x5615, 0x6dcb, 0x985f, 0x9b67, 0x762c, 0x9795, 0xfc94, 0xb20c, 0xc2bd, 0xb0f8, 0xfeeb, 0xdb44, 0x20f6, 0xe1a9, 0xeb0b, 0xd6e3, 0xe4c0, 0xdd18, 0x47b7, 0x4a03, 0x1d16, 0x42db, 0xed8f, 0x9e11, 0x6e60, 0x4950, 0x3cd9, 0xcdfa, 0x43ae, 0x27d8, 0xd28c, 0x0765, 0xd451, 0xdedb, 0xc780, 0x67d8, 0x1868,

11 A p p e n d i c e s P a g e 153 0x890f, 0xcbf7, 0x303d, 0x1f5a, 0x8daa, 0xc6d9, 0x8fad, 0xaac4, 0xc862, 0x74a3, 0xdc5a, 0xc94d, 0x5d1b, 0x5cf1, 0x3169, 0xa45c, 0x7098, 0x88a8, 0x61a0, 0x2c66, 0x9f03, 0x0d5d, 0x2b3c, 0x8736, 0x502f, 0x82a0, 0x540b, 0x648a, 0x267e, 0x7db9, 0x0345, 0x400d, 0x345e, 0x4bce, 0x1cd6, 0x73fe, 0xd1b0, 0xc485, 0xfd5e, 0x3bfc, 0xccd6, 0xfbd3, 0x7f06, 0xab01, 0xe668, 0x3ee8, 0x5ba5, 0xa56e, 0xadce, 0x041d, 0x2313, 0x9c5f, 0x14c6, 0x51f0, 0x22e0, 0xf0f3, 0x29d5, 0x7933, 0x7182, 0x7eef, 0xff9b, 0x8c65, 0x0e23, 0xe2c1, 0x0c3d, 0xef61, 0xbcf8, 0x7296, 0x7581, 0x6f90, 0x37ff, 0xa145, 0xec47, 0xd363, 0x8e13, 0x62bf, 0x8b2e, 0x8628, 0x103b, 0xe83c, 0x08ce, 0x7782, 0x11f7, 0xbec0, 0x92ef, 0x4f2c, 0x244b, 0xc593, 0x326b, 0x36bd, 0x9dd0, 0xcfd7, 0xf380, 0xa6f6, 0xbb4e, 0xac75, 0x5e68, 0x6cf3, 0xa933, 0x1347, 0x570b, 0x2503, 0xb597, 0xe33c, 0xbdef, 0xa872, 0x3a38, 0x01aa, 0x053f, 0x5991, 0x2a0e, 0x4698, ;

Keywords: CRC, CRC-7, cyclic redundancy check, industrial output, PLC, programmable logic controller, C code, CRC generation, microprocessor, switch

Keywords: CRC, CRC-7, cyclic redundancy check, industrial output, PLC, programmable logic controller, C code, CRC generation, microprocessor, switch Keywords: CRC, CRC-7, cyclic redundancy check, industrial output, PLC, programmable logic controller, C code, CRC generation, microprocessor, switch APPLICATION NOTE 6002 CRC PROGRAMMING FOR THE MAX14900E

More information

CTT MODBUS-RTU COMMUNICATION PROTOCOL TEMPERATURE MONITOR DEVICE

CTT MODBUS-RTU COMMUNICATION PROTOCOL TEMPERATURE MONITOR DEVICE INSTRUCTION MANUAL IM149-U v0.92 CTT MODBUS-RTU COMMUNICATION PROTOCOL TEMPERATURE MONITOR DEVICE Firmware version: v3.0 or higher MODBUS PROTOCOL Modbus is a master-slave communication protocol able to

More information

GNetPlus Communication Protocol

GNetPlus Communication Protocol Basic Package (BINARY VERSION) Master Query Package (HOST) Field Header Address Query Function Data length DATA BYTES Error Check Desc SOH 0~255 0~255 0~255 CRC16_Low CRC16_Hi Size 1 BYTE 1 BYTE 1 BYTE

More information

variable 1. Start of Packet - is used to provide synchronization when parsing packets. Always 0xFC

variable 1. Start of Packet - is used to provide synchronization when parsing packets. Always 0xFC DreamScreen V2 WiFi UDP Protocol The DreamScreen-WiFi platform uses UDP unicasting and broadcasting over the WLAN to provide communication. Port 8888 is used for both sending and receiving. The DreamScreen

More information

MCW Application Notes 24 th February 2017

MCW Application Notes 24 th February 2017 MCW Application Notes 24 th February 2017 www.motorcontrolwarehouse.co.uk Document number MCW-HEDY-001 Revision 0.1 Author Gareth Lloyd Product HEDY HD700 Title Summary HEDY HD700 Modbus Serial Communications

More information

MTR-4. C8 Command to MODBUS Bridge User Manual F-1, No. 631, Chung Der Road, Sec 1, Taichung Taiwan.

MTR-4. C8 Command to MODBUS Bridge User Manual F-1, No. 631, Chung Der Road, Sec 1, Taichung Taiwan. MTR-4 C8 Command to MODBUS Bridge User Manual 404 19F-1, No. 631, Chung Der Road, Sec 1, Taichung Taiwan. TEL:886-4-2238-0698 FAX:886-4-2238-0891 Web Site:http://www.monicon.com.tw E-mail: sales@monicon.com.tw

More information

variable 1. Start of Packet - is used to provide synchronization when parsing packets. Always 0xFC

variable 1. Start of Packet - is used to provide synchronization when parsing packets. Always 0xFC DreamScreen V2 WiFi UDP Protocol Rev 2 The DreamScreen-WiFi platform uses UDP unicasting and broadcasting over the WLAN to provide communication. Port 8888 is used for both sending and receiving. The DreamScreen

More information

Chapter 2: Secret Key

Chapter 2: Secret Key Chapter 2: Secret Key Basics Block or Stream? Secret Key Methods Salting AES Key Entropy Prof Bill Buchanan OBE http://asecuritysite.com/crypto02 http://asecuritysite.com/encryption Conclusion Encryption

More information

TBS Unify Pro / SmartAudio

TBS Unify Pro / SmartAudio TBS Unify Pro / SmartAudio 02.12..2017 Revision 08 SmartAudio uses single wire half duplex communication based on UART. In Idle mode both host and VTX define the SmartAudio pin as input. If the host want

More information

imetos LoRa Data payload structure

imetos LoRa Data payload structure imetos LoRa Data payload structure Pessl Instruments, GmbH Version 1.0, 06-2018 Content 1. SCOPE OF THIS DOCUMENT... 2 2. PARSING THE DATA FROM THE PAYLOAD VERSUS API DATA ACCESS... 3 3. IMETOS LORA FIRMWARE

More information

Ethernet to Digital I/O and Analog Input. (Model: IP-IO)

Ethernet to Digital I/O and Analog Input. (Model: IP-IO) Ethernet to Digital I/O and Analog Input (Model: IP-IO) Feature: Operation voltage : DC 7V ~ 36V. Analog Interface: Interface : 3.3V levels compatibility. Resolution : 16-bits Σ-Δ A/D converters. Accuracy

More information

SIMCom_3G_CSD_Application Note_V1.00

SIMCom_3G_CSD_Application Note_V1.00 SIMCom_3G_CSD_Application Note_V1.00 Document Title: SIMCom_3G_CSD_Application Note Version: 1.00 Date: Status: Document Control ID: Release SIMCom_3G_CSD_Application Note_V1.00 General Notes SIMCom offers

More information

ID: Sample Name: Q3dY56x3hp Cookbook: defaultlinuxfilecookbook.jbs Time: 04:08:56 Date: 21/08/2018 Version:

ID: Sample Name: Q3dY56x3hp Cookbook: defaultlinuxfilecookbook.jbs Time: 04:08:56 Date: 21/08/2018 Version: ID: 73304 Sample : Q3dY56x3hp Cookbook: defaultlinuxfilecookbook.jbs Time: 04:08:56 Date: 21/08/2018 Version: 23.0.0 Table of Contents Table of Contents Analysis Report Overview General Information Detection

More information

RS232C Serial Interface for Pirani Diaphragm and Pirani Standard Gauges. Caution. binary 8 data bits 1 stop bit no parity bit no handshake

RS232C Serial Interface for Pirani Diaphragm and Pirani Standard Gauges. Caution. binary 8 data bits 1 stop bit no parity bit no handshake General Information The Serial Interface allows the communication of the digital Agilent Pirani Capacitance Diaphragm Gauges (PCG-750, PCG-752) and the digital Agilent Pirani Standard Gauges (PVG-550,

More information

Signed/Unsigned Integer Arithmetic in C. Vineel Kovvuri

Signed/Unsigned Integer Arithmetic in C. Vineel Kovvuri Signed/Unsigned Integer Arithmetic in C Vineel Kovvuri http://vineelkovvuri.com Contents 1 Introduction 2 2 How signed-ness is represented in the hardware? 2 3 How signed-ness is interpreted in assembly?

More information

//

// ----------------------------------------------------------------------------------- Filename: FixedMath.h ----------------------------------------------------------------------------------- -----------------------------------------------------------------------------------

More information

Technical Specification. Third Party Control Protocol. AV Revolution

Technical Specification. Third Party Control Protocol. AV Revolution Technical Specification Third Party Control Protocol AV Revolution Document AM-TS-120308 Version 1.0 Page 1 of 31 DOCUMENT DETAILS Document Title: Technical Specification, Third Party Control Protocol,

More information

DMTME Multimeters. Communication protocol. Technical specification V1.2 ABB

DMTME Multimeters. Communication protocol. Technical specification V1.2 ABB DMTME Multimeters Communication protocol ABB 1 Setting up DMTME serial communication.3 1.1 Serial network ID programming...3 1.2 RS-485 communication interface...3 1.3 Serial line connection...3 2 Communication

More information

1 SETTING UP GENERAL FUNCTION TYPE PROTOCOL MESSAGES COMMAND RETURN CODES... 6 TRANSACTION EXAMPLES...

1 SETTING UP GENERAL FUNCTION TYPE PROTOCOL MESSAGES COMMAND RETURN CODES... 6 TRANSACTION EXAMPLES... 1 SETTING UP... 3 1.1 RS232 CONTROL CABLES...3 1.2 RS232 SETTINGS...3 2 GENERAL... 4 3 FUNCTION TYPE... 4 4 PROTOCOL MESSAGES... 4 4.1 MESSAGE FORMATS...4 4.1.1 Message Head...4 4.1.2 Message Body...5

More information

Diagnostic Port Serial Interface for Capacitance Diaphragm Gauges

Diagnostic Port Serial Interface for Capacitance Diaphragm Gauges Communication Protocol Diagnostic Port Serial Interface for Capacitance Diaphragm Gauges CDG025D-X3 4-20 ma Current Loop Stripe CDG045Dhs Stripe CDG100Dhs tira84e1 (2017-05) 1 General Information The Diagnostic

More information

Modbus Protocol Guide for ZP2 Series Control Panels

Modbus Protocol Guide for ZP2 Series Control Panels Modbus Protocol Guide for ZP2 Series Control Panels P/N 00-3243-505-2603-01 ISS 14DEC15 Copyright Trademarks and patents Manufacturer Version REV 01 Certification 2015 UTC Fire & Security. All rights reserved.

More information

Using the USB and Serial Interfaces

Using the USB and Serial Interfaces Using the USB and Serial Interfaces PulsON 300 and 400 Series TIME DOMAIN Cummings Research Park 4955 Corporate Drive Suite 101 Huntsville, AL 35805 USA http://www.timedomain.com Tel: +1 256.922.9229 +1

More information

Highlights. FP51 (FPGA based 1T 8051 core)

Highlights. FP51 (FPGA based 1T 8051 core) Copyright 2017 PulseRain Technology, LLC. FP51 (FPGA based 1T 8051 core) 10555 Scripps Trl, San Diego, CA 92131 858-877-3485 858-408-9550 http://www.pulserain.com Highlights 1T 8051 Core Intel MCS-51 Compatible

More information

SXH Protocol by Spinel Version 3.0 Date:

SXH Protocol by Spinel Version 3.0 Date: SXH Protocol by Spinel Version 3.0 Date:.8 Revision History Vision Date Description V.0 V.0 V3.0 September, 6 December, 6 April, 8 Initial release Added LED control, OSD, Cmd 0x30 Added all ratio image

More information

RS-232 Control of the Advantage EQ281/8, EQ282/8 and Advantage SMS200

RS-232 Control of the Advantage EQ281/8, EQ282/8 and Advantage SMS200 RS-232 Control of the Advantage EQ281/8, EQ282/8 and Advantage SMS200 Biamp Systems, 14130 N.W. Science Park, Portland, Oregon 97229 U.S.A. (503) 641-7287 an affiliate of Rauland-Borg Corp. Introduction

More information

Flexi Soft T E L E G R A M M L I S T I N G

Flexi Soft T E L E G R A M M L I S T I N G T E L E G R A M M L I S T I N G This document is protected by the law of copyright, whereby all rights established therein remain with the company SICK AG. Reproduction of this document or parts of this

More information

Verve IPAC Plug-in Wireless AC Module. Software Setup 3. DolphinView Software 3. Preparations 4 Transmit LINK Signals 4.

Verve IPAC Plug-in Wireless AC Module. Software Setup 3. DolphinView Software 3. Preparations 4 Transmit LINK Signals 4. Verve IPAC Plug-in Wireless AC Module Wireless Linking & Configuration Guide Table of Contents IPAC Configuration Settings 2 Configuration Settings Reference Table 2 Software Setup 3 DolphinView Software

More information

AquaCER with TTL OUTPUT

AquaCER with TTL OUTPUT INSTRUCTION MANUAL AquaCER with TTL OUTPUT DESCRIPTION: The AquaCER TTL is a hydrostatic pressure transmitter, with a capacitive ceramic sensor, and can withstand very high burst pressures. The applied

More information

CSEE bit AES decryption. Shrivathsa Bhargav Larry Chen Abhinandan Majumdar Shiva Ramudit. Spring 2008 Project Design Document

CSEE bit AES decryption. Shrivathsa Bhargav Larry Chen Abhinandan Majumdar Shiva Ramudit. Spring 2008 Project Design Document CSEE 4840 128-bit AES decryption Shrivathsa Bhargav Larry Chen Abhinandan Majumdar Shiva Ramudit Spring 2008 Project Design Document CSEE 4840 Table of contents Abstract 1 1. Introduction 1 2. Hardware

More information

PLC Lite Host Message Protocol Specification

PLC Lite Host Message Protocol Specification PLC Lite Host Message Protocol Specification Version 0.6 Oct. 20, 2014 Copyright Texas Instruments Incorporated, 2009-2014 The information and/or drawings set forth in this document and all rights in and

More information

Heat meter PolluStat M-bus communication protocol description

Heat meter PolluStat M-bus communication protocol description Heat meter PolluStat M-bus communication protocol description 1 1. General structure of protocol 1.1. General features of protocol Meter uses a M-bus protocol. Default baud rate: 2400 bps, Even, 1 Stop.

More information

M2M/DMTME Instruments Communication protocol. Technical specification V.2.1 2CSG445011D0201

M2M/DMTME Instruments Communication protocol. Technical specification V.2.1 2CSG445011D0201 M2M/DMTME Instruments Communication protocol 2CSG445011D0201 1 Setting up M2M/DMTME serial communication... 3 1.1 Serial network ID programming... 3 1.2 RS-485 communication interface... 3 1.3 Serial line

More information

DULCOMETER Multi-parameter Controller dialog DACa

DULCOMETER Multi-parameter Controller dialog DACa Software manual DULCOMETER Multi-parameter Controller dialog DACa Modbus RTU EN Valid only in combination with the operating instructions for the Multi-parameter Controller dialog DACa. A2100 Please carefully

More information

Input Channels: 4 differential or four single-ended. Address / Baud rate / range configurable by the user

Input Channels: 4 differential or four single-ended. Address / Baud rate / range configurable by the user DAM-Series User Manual Amazing Electronic (HK) Limited User s Manual Overview: DAM module is a new generation data acquisition and control system based on modular embedded systems. Adopting standard DIN35

More information

Request for Comments: XXXX November Registration of a Georgian Character Set draft-giasher-geostd8-00.txt

Request for Comments: XXXX November Registration of a Georgian Character Set draft-giasher-geostd8-00.txt Internet draft Gia Shervashidze Network Working Group Georgian Internet Avenue Request for Comments: XXXX November 2001 Registration of a Georgian Character Set draft-giasher-geostd8-00.txt Status of this

More information

// and verify that there is a sine wave with frequency <FREQUENCY> and

// and verify that there is a sine wave with frequency <FREQUENCY> and F330DC_IDA0_SineWave.c Copyright 2006 Silicon Laboratories, Inc. http:www.silabs.com Program Description: This program outputs a sine wave using IDA0. IDA0's output is scheduled to update at a rate determined

More information

HDLC BCC 15.1 Data Link Protocol Description

HDLC BCC 15.1 Data Link Protocol Description Data Link Protocol Description by Daniel L. Henry Revision 1.1 October 9, 2011 Copyright 2000-2011 by Daniel L. Henry Revision History Rev. Date Changed By Reason for Change 1.0 5/9/03 Dan L. Henry Made

More information

RS-232 Control of the Advantage DRI

RS-232 Control of the Advantage DRI RS-232 Control of the Advantage DRI Biamp Systems, 14130 N.W. Science Park, Portland, Oregon 97229 U.S.A. (503) 641-7287 an affiliate of Rauland-Borg Corp. Introduction This document contains technical

More information

RS232C / RS485C Serial Interface for Cold Cathode and Cold Cathode Pirani Gauges

RS232C / RS485C Serial Interface for Cold Cathode and Cold Cathode Pirani Gauges Communication Protocol RS232C / RS485C Serial Interface for Cold Cathode and Cold Cathode Pirani Gauges MAG500, MAG504 MPG500, MPG504 tira83e1-a (2017-06) 1 General Information The Serial Interface allows

More information

StarPRNT ios SDK User s Manual

StarPRNT ios SDK User s Manual StarPRNT ios SDK User s Manual Abstract This paper provides information about the StarPRNT ios SDK. It provides guidelines for our customers to build the StarPRNT application. Version History Release Date

More information

The Roboteq Modbus Implementation User Manual

The Roboteq Modbus Implementation User Manual The Roboteq Modbus Implementation User Manual V1.1, December 21, 2017 Visit www.roboteq.com to download the latest revision of this manual Copyright 2017 Roboteq, Inc Copyright Roboteq Inc. 2018. All Rights

More information

#include <stdio.h> // // Global CONSTANTS

#include <stdio.h> // // Global CONSTANTS Distance.c Author: Baylor Electromechanical Systems Operates on an external 18.432 MHz oscillator. Target: Cygnal Educational Development Board / C8051F020 Tool chain: KEIL C51 6.03 / KEIL EVAL C51 Utilizes

More information

RS232C / RS485C Serial Interface for Pirani Capacitance Diaphragm and Pirani Standard Gauges

RS232C / RS485C Serial Interface for Pirani Capacitance Diaphragm and Pirani Standard Gauges Communication Protocol RS232C / RS485C Serial Interface for Pirani Capacitance Diaphragm and Pirani Standard Gauges PCG550, PCG552, PCG554 PSG550, PSG552, PSG554 RS485C RS232C tira59e1-a (2017-04) 1 General

More information

App Note Application Note: State-Driven Control of a dpasp using a Microchip PIC.

App Note Application Note: State-Driven Control of a dpasp using a Microchip PIC. Rev: 1.0.1 Date: 8 th July 2009 App Note - 207 Application Note: State-Driven Control of a dpasp using a Microchip PIC. This application note contains a total 3 files, if you have only this pdf text document,

More information

on a 35 mm top-hat rail (in accordance with DIN EN TH35) Ambient temperature Operation: C Storage: C

on a 35 mm top-hat rail (in accordance with DIN EN TH35) Ambient temperature Operation: C Storage: C Data sheet PCD1.B1020-A20 E-Line RIO 16DI, 4Rel Starting with FW 1.08.xx The L-Serie E-Line RIO modules are controlled via the RS-485 serial communication protocols S-Bus and Modbus for decentralised automation

More information

Interface Control Document

Interface Control Document Interface Control Document CR8200 Engine-based products D026166 CR8200 Interface Control Document ICD.docx Page 1 of 14 TABLE OF CONTENTS 1 Scope... 3 2 Communication Medium... 3 3 Reader to Host Communication...

More information

Computer Control of the Advantage DRC 4+4

Computer Control of the Advantage DRC 4+4 Computer Control of the Advantage DRC 4+4 Biamp Systems, 14130 N.W. Science Park, Portland, Oregon 97229 U.S.A. (503) 641-7287 an affiliate of Rauland-Borg Corp. Introduction This document contains technical

More information

BENCHTOP INSTRUMENT. Digital AC/DC Power Meter. Operation Manual V1.0

BENCHTOP INSTRUMENT. Digital AC/DC Power Meter. Operation Manual V1.0 BENCHTOP INSTRUMENT Digital AC/DC Power Meter Operation Manual V1.0 Default Setup Item Default Remark Version 0 Model No. Address 1 1 ~ 255 decimal Baud Rate 96 3 bps, 6 bps, 12 bps, 24 bps, 48 bps, 96

More information

Control Flow Integrity with ptrace()

Control Flow Integrity with ptrace() Control Flow Integrity with ptrace() Sebastian Krahmer krahmer@suse.de May 18, 2006 Abstract Control Flow Integrity (CFI) is a new technology to ensure a certain execution flow of a program. One of its

More information

AD-SM2400AP02A-PWRLN. Application Note. SM2400 Bootloader User Guide. Overview

AD-SM2400AP02A-PWRLN. Application Note. SM2400 Bootloader User Guide. Overview AD-SM2400AP02A-PWRLN Application Note Communication Technology by: Semitech Semiconductor Revision 1.0 August 2016 Overview This application note describes the SM2400 Bootloader modes, interface, and protocols,

More information

SPARC INTERNATIONAL. Version1 SPARC Keyboard Specification

SPARC INTERNATIONAL. Version1 SPARC Keyboard Specification SPARC INTERNATIONAL Version1 SPARC Keyboard Specification SPARC International, Inc. 3333 Bowers Ave., Suite 280, Santa Clara, CA 95054-3913, 408-748-9111. FAX 408-748-9777 1999, SPARC International Inc.

More information

Intro (with some history) Issues ow, ow, ow, ow, ow, ow, ow, ow, Disclosure/Timeline CHIASMUS cipher

Intro (with some history) Issues ow, ow, ow, ow, ow, ow, ow, ow, Disclosure/Timeline CHIASMUS cipher Intro (with some history) Issues ow, ow, ow, ow, ow, ow, ow, ow, Disclosure/Timeline CHIASMUS cipher We made this: Erik Tews, Julian Wälde, and me independent discovery by Felix Schuster ECB first discovered

More information

Modbus Map: Conext XW/XW+ Device

Modbus Map: Conext XW/XW+ Device Map: Conext XW/XW+ Device 503-0246-01-01 Revision A.3 UNINTENDED OPERATION WARNING The use of this product with communications requires expertise in the design, operation, and programming of the device.

More information

Mahesh V. Tripunitara and Samuel S. Wagsta, Jr. COAST Laboratory. Purdue University. COAST TR-98/01.

Mahesh V. Tripunitara and Samuel S. Wagsta, Jr. COAST Laboratory. Purdue University. COAST TR-98/01. The Compression Functions of SHA, MD, MD4 and MD5 are not Ane Mahesh V. Tripunitara and Samuel S. Wagsta, Jr. COAST Laboratory Purdue University West Lafayette, IN 47907-198 ftripunit,sswg@cs.purdue.edu

More information

Motors I Automation I Energy I Transmission & Distribution I Coatings. Modbus RTU CFW701. User s Manual

Motors I Automation I Energy I Transmission & Distribution I Coatings. Modbus RTU CFW701. User s Manual Motors I Automation I Energy I Transmission & Distribution I Coatings Modbus RTU CFW701 User s Manual Modbus RTU User s Manual Series: CFW701 Language: English Document Number: 10001538593 / 00 Publication

More information

Security Analysis of Lightweight Authentication Protocol from WISTP ,2) P, Xiao FuP P, Chen Dan-weiP P, Wang Ru-chuanP

Security Analysis of Lightweight Authentication Protocol from WISTP ,2) P, Xiao FuP P, Chen Dan-weiP P, Wang Ru-chuanP P P P Security Analysis of Lightweight Authentication Protocol from WISTP 23,2,3),2),2),2) Wang Shao-HuiP P, Xiao FuP P, hen Dan-weiP P, Wang Ru-chuanP P 2) ) P(ollege of omputer, Nanjing University of

More information

Primitive Specification for SSS Philip Hawkes, Michael Paddon, Gregory G. Rose, Miriam Wiggers de Vries

Primitive Specification for SSS Philip Hawkes, Michael Paddon, Gregory G. Rose, Miriam Wiggers de Vries Primitive Specification for SSS Philip Hawkes, Michael Paddon, Gregory G. Rose, Miriam Wiggers de Vries {phawkes,mwp,ggr,miriamw}@qualcomm.com Qualcomm Australia Level 3, 230 Victoria Rd Gladesville NSW

More information

PCD1.W5200-A20. E-Line S-Serie RIO 8AO. Features. General technical data. Dimensions and installation

PCD1.W5200-A20. E-Line S-Serie RIO 8AO. Features. General technical data. Dimensions and installation Data sheet www.sbc-support.com PCD1.W5200-A20 E-Line S-Serie RI 8A The S-Serie E-Line RI modules are controlled via the RS-485 serial communication protocols S-Bus and Modbus for decentralised automation

More information

PCD1.A2000-A20. E-Line S-Serie RIO 6Rel 16A. Features. General technical data. Dimensions and installation

PCD1.A2000-A20. E-Line S-Serie RIO 6Rel 16A. Features. General technical data. Dimensions and installation Data sheet www.sbc-support.com PCD1.A2000-A20 E-Line S-Serie RI 6Rel 16A The S-Serie E-Line RI modules are controlled via the RS-485 serial communication protocols S-Bus and Modbus for decentralised automation

More information

JDICON 400/500 JDICON 401/501. B Interface Description. Universal process controller

JDICON 400/500 JDICON 401/501. B Interface Description. Universal process controller JDICON 400/500 Universal process controller JDICON 401/501 Universal profile controller Universal profile generator B 70.3570.2 Interface Description 10.99/00371593 Contents 1 Introduction 5 1.1 Preface...

More information

Modbus communication protocol

Modbus communication protocol TIP Thüringer Industrie Produkte GmbH Bahnhofstraße 26 99842 Ruhla GERMANY Tel. : +49 (0)36929/64029-0 Fax : +49 (0)36929/64029-99 info@stromzaehler.de www.stromzaehler.de Modbus communication protocol

More information

ADV7610 SOFTWARE MANUAL SOFTWARE MANUAL. Documentation of the Register Maps. Rev. 0

ADV7610 SOFTWARE MANUAL SOFTWARE MANUAL. Documentation of the Register Maps. Rev. 0 ADV7610 SOFTWAE MANUAL Documentation of the egister Maps SOFTWAE MANUAL ev. 0 April 2013 egister Map TABLE OF CONTENTS Introduction... 3 Legal Terms and Conditions... 3 1 egister Tables... 4 1.1 IO...

More information

Modbus RTU CFW100. User s Manual. Phone: Fax: Web: -

Modbus RTU CFW100. User s Manual. Phone: Fax: Web:  - Modbus RTU CFW100 User s Manual Modbus RTU User s Manual Series: CFW100 Language: English Document Number: 10002909455 / 00 Publication Date: 06/2014 CONTENTS CONTENTS... 3 ABOUT THIS MANUAL... 5 ABBREVIATIONS

More information

GSA GAT PROTOCOL V Game Authentication Terminal

GSA GAT PROTOCOL V Game Authentication Terminal GSA GAT PROTOCOL V3.50.0 Game Authentication Terminal Gaming Standards Association GAT Technical Committee Released: 2010/12/13 Document ID: gsa-p0093.001.00 GAMINGSTANDARDS.COM GSA GAT Protocol, Document

More information

UNPACKING THE PACKED UNPACKER: REVERSING AN ANDROID ANTI-ANALYSIS NATIVE LIBRARY Maddie Stone Google, USA

UNPACKING THE PACKED UNPACKER: REVERSING AN ANDROID ANTI-ANALYSIS NATIVE LIBRARY Maddie Stone Google, USA 3 5 October UNPACKING THE PACKED UNPACKER: REVERSING AN ANDROID ANTI-ANALYSIS NATIVE LIBRARY Maddie Stone Google, USA ABSTRACT maddiestone@google.com Malware authors implement many different techniques

More information

Specifiche generali protocollo MODBUS-RTU Rev. 10 (inglese) REVISIONS

Specifiche generali protocollo MODBUS-RTU Rev. 10 (inglese) REVISIONS Modbus-RTU Protocol (Mach Smart / Smart Più) Page 1 of 18 Specifiche generali protocollo MODBUS-RTU Rev. 10 (inglese) Written: U. T. ing. M. Bandini / A. Sangiorgi Verified: A. Q. sig. F. Adinolfi Approved:

More information

BC3G-US-SMA API. Rev 2.0

BC3G-US-SMA API. Rev 2.0 BC3G-US-SMA API Rev 2.0 28/10/2015 Table of Contents Table of Contents... 2 1. Product revision history... 4 2. How to use this document... 4 3. Serial Protocol Definition... 5 3.1. Configuration... 5

More information

MODBUS Communication Protocol

MODBUS Communication Protocol MODBUS Communication Protocol for counters with integrated MODBUS or ETHERNET interface 7E.78/86 0212 7E.68 0212 7E.64 0210 7E.78/86 0412 7E.68 0412 6A and 80A 3phase counters with RS485 serial communication.

More information

Motors I Automation I Energy I Transmission & Distribution I Coatings. Modbus RTU CFW300. User s Manual

Motors I Automation I Energy I Transmission & Distribution I Coatings. Modbus RTU CFW300. User s Manual Motors I Automation I Energy I Transmission & Distribution I Coatings Modbus RTU CFW300 User s Manual Modbus RTU User s Manual Series: CFW300 Language: English Document Number: 10003806158 / 02 Publication

More information

DATA SHEET. article numbers P125-1b & P125-1g

DATA SHEET. article numbers P125-1b & P125-1g LC 16.2 TREND DATA SHEET article numbers P125-1b & P125-1g Pottery House, Pottery Road, Dun Laoghaire, Co. Dublin, Ireland. Tel: +353-1-2350279 Fax: +353-1-2350361 Am Gneisenauflöz 6, 66538 Neunkirchen,

More information

MODEL TDAI-2170 INTEGRATED AMPLIFIER EXTERNAL CONTROL MANUAL

MODEL TDAI-2170 INTEGRATED AMPLIFIER EXTERNAL CONTROL MANUAL MODEL TDAI-2170 INTEGRATED AMPLIFIER EXTERNAL CONTROL MANUAL Serial Settings The serial port settings are always 8 data bits, no parity and one stop bit with a baud rate of 115200. Commands and Requests

More information

ADV7612 SOFTWARE MANUAL SOFTWARE MANUAL. Documentation of the Register Maps. Rev. A

ADV7612 SOFTWARE MANUAL SOFTWARE MANUAL. Documentation of the Register Maps. Rev. A ADV7612 SOFTWAE MANUAL Documentation of the egister Maps SOFTWAE MANUAL ev. A December 2013 TABLE OF CONTENTS egister Map Introduction... 3 Legal Terms and Conditions... 3 1 egister Tables... 4 1.1 IO...

More information

Motors I Automation I Energy I Transmission & Distribution I Coatings. Modbus RTU CFW500. User s Manual

Motors I Automation I Energy I Transmission & Distribution I Coatings. Modbus RTU CFW500. User s Manual Motors I Automation I Energy I Transmission & Distribution I Coatings Modbus RTU CFW500 User s Manual Modbus RTU User s Manual Series: CFW500 Language: English Document Number: 10002253377 / 00 Publication

More information

TCG Algorithm Registry

TCG Algorithm Registry Family 2.0" Level 00 Revision 01.27 September 26, 2017 Committee Draft Contact: admin@trustedcomputinggroup.org Work in Progress: This document is an intermediate draft for comment only and is subject

More information

CS 4400 Fall 2018 Midterm Exam 2 Practice (Version 2)

CS 4400 Fall 2018 Midterm Exam 2 Practice (Version 2) CS 4400 Fall 2018 Midterm Exam 2 Practice (Version 2) Name: Instructions You will have eighty minutes to complete the actual open-book, opennote exam. Electronic devices will be allowed only to consult

More information

Description. thanos ModBus. thanos SR ModBus

Description. thanos ModBus. thanos SR ModBus thanos ModBus & thanos SR ModBus Thermokon Sensortechnik GmbH - www.thermokon.de - email@thermokon.de 1 Index of changes Revision Date A B C 25.7.211 First draft 12.9.211 Version LQ added 22.9.211 Additional

More information

Salsa20 security. Daniel J. Bernstein

Salsa20 security. Daniel J. Bernstein Salsa20 security Daniel J. Bernstein Department of Mathematics, Statistics, and Computer Science (M/C 249) The University of Illinois at Chicago Chicago, IL 60607 7045 snuffle@box.cr.yp.to 1 Introduction

More information

T H R E A D

T H R E A D Downloaded from: justpaste.it/na6n A fal error has been detected by the Java Runtime Environment: EXCEPTION_ACCESS_VIOLATION (0xc0000005) pc=0x1938d9c0, pid=3992, tid=3392 JRE version: Java(TM) SE Runtime

More information

THE KEY RECOVERY ATTACKS CRYPTOGRAPHY IMPLEMENTATIONS AGAINST COMMERCIAL WHITE BOX SANGHWAN AHN(H2SPICE), LINE CORPORATION

THE KEY RECOVERY ATTACKS CRYPTOGRAPHY IMPLEMENTATIONS AGAINST COMMERCIAL WHITE BOX SANGHWAN AHN(H2SPICE), LINE CORPORATION THE KEY RECOVERY ATTACKS AGAINST COMMERCIAL WHITE BOX CRYPTOGRAPHY IMPLEMENTATIONS SANGHWAN AHN(H2SPICE), LINE CORPORATION AGENDA Introduction WHITE-BOX CRYPTOGRAPHY White-box Cryptanalysis Conclusion

More information

RTX64. Supported Network Interface Cards

RTX64. Supported Network Interface Cards RTX64 Supported Network Interface Cards 2017 IntervalZero, Inc. IZ-DOC-X64-0088-R34 October 2017 The Supported Network Interface Cards guide lists the NIC drivers that are provided with RTX64 for use with

More information

RTX64. Supported Network Interface Cards IntervalZero, Inc. IZ-DOC-X R32 March 2017

RTX64. Supported Network Interface Cards IntervalZero, Inc. IZ-DOC-X R32 March 2017 RTX64 Supported Network Interface Cards 2017 IntervalZero, Inc. IZ-DOC-X64-0088-R32 March 2017 The Supported Network Interface Cards guide lists the NIC drivers that are provided with RTX64 for use with

More information

IEC /104 Communications Protocol

IEC /104 Communications Protocol expertmeter High Performance Analyzer PM180 IEC60870-5-101/104 Communications Protocol Reference Guide BG0593 Rev. A1 Every effort has been made to ensure that the material herein is complete and accurate.

More information

University of Texas at El Paso Electrical and Computer Engineering Department

University of Texas at El Paso Electrical and Computer Engineering Department University of Texas at El Paso Electrical and Computer Engineering Department EE 3176 Laboratory for Microprocessors I Fall 2016 LAB 07 Flash Controller Goals: Bonus: Pre Lab Questions: Familiarize yourself

More information

The Algorithm (Stream Cipher) RC4 (ARC-4)

The Algorithm (Stream Cipher) RC4 (ARC-4) The Algorithm (Stream Cipher) RC4 (ARC-4) Disclaimer: The Algorithm known as "RC4"is a trademark of RSA Security Inc., and this page makes no claims one way or another that this is the correct algorithm,

More information

JMY607H User's Manual

JMY607H User's Manual JMY607H User's Manual (Revision 3.42) Jinmuyu Electronics Co. LTD 2011/6/27 Please read this manual carefully before using. If any problem, please mail to: Jinmuyu@vip.sina.com Contents 1 Product introduction...

More information

S1C17 Series Small Memory Programming

S1C17 Series Small Memory Programming S1C17 Series Small Memory Programming Rev.1.0 Evaluation board/kit and Development tool important notice 1. This evaluation board/kit or development tool is designed for use for engineering evaluation,

More information

Low visibility of Cyber Threats Invisible Attacks VPN, AD, PtH, PtT Invisible Network Traffic Google Drive, Dropbox Invisible Malware Task schedule, Wmi, Powershell 2016 Verint systems inc. All rights

More information

KINGSTAR 3.6. SUPPORTED NETWORK INTERFACE CARDS KS-DOC-x R20

KINGSTAR 3.6. SUPPORTED NETWORK INTERFACE CARDS KS-DOC-x R20 KINGSTAR 3.6 SUPPORTED NETWORK INTERFACE CARDS KS-DOC-x64-0007-R20 Copyright 1996-2019 by All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means, graphic,

More information

Dell 7609WU RS232 Protocol Document

Dell 7609WU RS232 Protocol Document Dell 7609WU RS232 Protocol Document RS232 Projector Pin Assignment (Facing Projector) RS232 Serial Communication Cable Pin Assignment (Facing Cable) Pin Assignments RS232 PIN DESCRIPTION MINI DIN-6 1 2

More information

MICROPROCESSOR CONTROLLER RE15

MICROPROCESSOR CONTROLLER RE15 MICROPROCESSOR CONTROLLER RE15 SERIAL INTERFACE WITH MODBUS PROTOCOL USER S MANUAL 1 2 CONTENTS 1. PREFACE... 4 2. DESCRIPTION OF THE MODBUS PROTOCOL... 4 2.1. ASCII framing... 6 2.2. RTU framing... 6

More information

1CAPI INFORMATION VALUES. August Software Reference CAPI Information Values 1

1CAPI INFORMATION VALUES. August Software Reference CAPI Information Values 1 1CAPI INFORMATION VALUES August 2000 Software Reference CAPI Information Values 1 2 CAPI Information Values Software Reference Table of Contents CAPI INFORMATION Table of Contents VALUES A REFERENCE 5

More information

Protocol Description. thanos ModBus. thanos SR ModBus

Protocol Description. thanos ModBus. thanos SR ModBus Protocol Description thanos ModBus & thanos SR ModBus Thermokon Sensortechnik Gmb - www.thermokon.de - email@thermokon.de 1 Index of changes Revision Date Description A B C 25.7.211 First draft 12.9.211

More information

Transferable State Attack on Iterated Hashing Functions. July 26, Brian Wallace. Ballast Security

Transferable State Attack on Iterated Hashing Functions. July 26, Brian Wallace. Ballast Security Transferable State Attack on Iterated Hashing Functions July 26, 2012 Brian Wallace Ballast Security 1 Abstract In this paper I will describe an attack on the iterated use of hashing functions used as

More information

ANM071. Keypad decoding technique using TSC80251G1. 1. Description 2. TSC80251G Keyboard interrupt Power down mode

ANM071. Keypad decoding technique using TSC80251G1. 1. Description 2. TSC80251G Keyboard interrupt Power down mode Keypad decoding technique using TSC80251G1 by François Fosse Technical Marketing Engineer Temic France 1. Description This application note demonstrates the use of a matrix keypad including wake up from

More information

Software Manual. Applicable Models TSP100ECO TSP100GT TSP100LAN TSP100U/PUSB. Rev. 5.5

Software Manual. Applicable Models TSP100ECO TSP100GT TSP100LAN TSP100U/PUSB. Rev. 5.5 Applicable Models TSP100ECO TSP100GT TSP100LAN TSP100U/PUSB Rev. 5.5 Contents 1. Installation and Uninstallation... 1 1.1. Installing CD... 1 1.2. Adding a Printer (TSP100U/PU/GT/ECO)... 7 1.3. Adding

More information

ECE251: Intro to Microprocessors Name: Solutions Mid Term Exam October 4, 2018

ECE251: Intro to Microprocessors Name: Solutions Mid Term Exam October 4, 2018 ECE251: Intro to Microprocessors Name: Solutions Mid Term Exam October 4, 2018 (PRINT) Instructions: No calculators, books, or cell phones; do not communicate with any other student. One side of a single

More information

Installation, operation and maintenance manual

Installation, operation and maintenance manual Read this manual before installing, operating or maintaining this actuator. Failure to follow safety precautions and instructions could cause actuator failure and result in serious injury, death or property

More information

For personnal use only

For personnal use only Using FedUp to Upgrade an EFI Boot Stub System to Fedora 19 Finnbarr P. Murphy (fpm@fpmurphy.com) FedUp (FEDora UPgrader) is the new tool for upgrading existing Fedora installs in Fedora 18 and above releases.

More information

Technical Information. Command overview of Vision Systems

Technical Information. Command overview of Vision Systems Technical Information Command overview of Vision Systems Image analysis command Grab image 0x01 X X X X Shutter speed 0x07 X X X X Synchronous flash 0x49 X X X X Video mode 0x00 X X Display 0x05 X X X

More information

Downloaded from: justpaste.it/in05

Downloaded from: justpaste.it/in05 Starting log GPxPatch version: 4.30a GPx version detected: decrypted GP4 v1.02 Date/time: 28-12-2014 20:21 [20:21:59.899] Verbosity level is 2 [20:21:59.899] OS version info: Windows 7 build 7600 [20:21:59.899]

More information