timestamping

quickfix sendingtime (field 52) dropping milliseconds

给你一囗甜甜゛ 提交于 2020-01-24 18:58:51
问题 I'm running QuickFix with the Python API and connecting to a TT FIX Adapter using FIX4.2 I'm successfully logging on and sending a market data request. The replies are fine. In my message logs (both screen logs and file logs) I am getting a SendingTime (field 52) that looks something like this: 52=20130207-02:38:32.212 However, when I try to get this field and print it to the terminal or to a file, everything is the same except the milliseconds are dropped. So the result is always: 52

quickfix sendingtime (field 52) dropping milliseconds

蹲街弑〆低调 提交于 2020-01-24 18:58:30
问题 I'm running QuickFix with the Python API and connecting to a TT FIX Adapter using FIX4.2 I'm successfully logging on and sending a market data request. The replies are fine. In my message logs (both screen logs and file logs) I am getting a SendingTime (field 52) that looks something like this: 52=20130207-02:38:32.212 However, when I try to get this field and print it to the terminal or to a file, everything is the same except the milliseconds are dropped. So the result is always: 52

create tsa (timestamping) certificate with openssl - add a extendedKeyUsage in a certificate

℡╲_俬逩灬. 提交于 2019-12-21 04:58:33
问题 I'd like to create a tsa certificate for my timestamping service. First I create a root certificate openssl genrsa -out tsaroot.key 4096 -config openssl.cnf openssl req -new -x509 -days 1826 -key tsaroot.key -out tsaroot.crt -config openssl.cnf Then I create the tsa certificate openssl genrsa -des3 -out tsa.key 4096 -config openssl.cnf openssl req -new -key tsa.key -out tsa.csr -config openssl.cnf openssl x509 -req -days 730 -in tsa.csr -CA tsaroot.crt -CAkey tsaroot.key -set_serial 01 -out

Timestamping using TSA URL and Java APIs

被刻印的时光 ゝ 提交于 2019-12-21 02:55:26
问题 Can anyone please help me in understanding the process and Java APIs used while timestamping a signature. I need to sign a file and timestamp it using TSA url "http://timestamp.globalsign.com/scripts/timstamp.dll" using Java APIs. I am able to sign the file using java.security APIs but unable to timestamp it. 回答1: Your question is a bit broad... I will give you some info which I hope it will point you on the right direction. The thing is that you want to use a timestamp service to perform a

Modifying AndroidManifest.xml with build tag causes infinite rebuilding in Eclipse

二次信任 提交于 2019-12-11 04:06:00
问题 I've added a tagging / date-stamping system to my Android build system similar to the thread found here on Stack Overflow: embed version details in android APK This worked out great for me, The post was awesome and I simply modified the Perl to put in a datestamp like thus: perl -npi -e 's/(Build Date:)(.+)(DEV-MOB)/"Build Date: " . localtime() . " DEV-MOB"/e;' $MANIFEST The issue I'm dealing with now is that Eclipse wants to continue building over and over. As soon as it sees that the

Trusted Timestamps - understanding the format (rfc3161)

邮差的信 提交于 2019-12-09 07:14:22
问题 [ edit : I've written a blogpost that explains everything in detail: look here] Hi! I'm desperately trying to build a service for trusted timestamps based on rfc3161. I've decided to use the free trusted timestamp service at zeitstempel.dfn.de . My question is how i shall contact this service in order to receive a valid response. Regarding the request format, the RFC tells: TimeStampReq ::= SEQUENCE { version INTEGER { v1(1) }, messageImprint MessageImprint, --a hash algorithm OID and the

Timestamp server rfc3161 response token generation in Python

感情迁移 提交于 2019-12-06 06:41:21
问题 I'm trying to implement tsa server on python using twisted. Currently I'm using openssl binary to generate response, but this seems ugly to me, that's why I'm trying to figure out how to make response token with m2crypto. Thanks in advance for help! Maris. EDITED: how to achieve with m2crypto?: openssl ts -reply -section tsa_config1 -queryfile query.tsq -out response.tsr 回答1: M2Crypto does not yet wrap those pieces of openssl, so you can't use M2Crypto for what you are using the openssl

Timestamp server rfc3161 response token generation in Python

≯℡__Kan透↙ 提交于 2019-12-04 14:51:42
I'm trying to implement tsa server on python using twisted. Currently I'm using openssl binary to generate response, but this seems ugly to me, that's why I'm trying to figure out how to make response token with m2crypto. Thanks in advance for help! Maris. EDITED: how to achieve with m2crypto?: openssl ts -reply -section tsa_config1 -queryfile query.tsq -out response.tsr M2Crypto does not yet wrap those pieces of openssl, so you can't use M2Crypto for what you are using the openssl command line client for. You can simply use the rfc3162ng module. download the certificate of your favorite TSA:

Trusted Timestamps - understanding the format (rfc3161)

筅森魡賤 提交于 2019-12-03 09:11:24
[ edit : I've written a blogpost that explains everything in detail: look here ] Hi! I'm desperately trying to build a service for trusted timestamps based on rfc3161. I've decided to use the free trusted timestamp service at zeitstempel.dfn.de . My question is how i shall contact this service in order to receive a valid response. Regarding the request format, the RFC tells: TimeStampReq ::= SEQUENCE { version INTEGER { v1(1) }, messageImprint MessageImprint, --a hash algorithm OID and the hash value of the data to be --time-stamped reqPolicy TSAPolicyId OPTIONAL, nonce INTEGER OPTIONAL,

Timestamping using TSA URL and Java APIs

烈酒焚心 提交于 2019-12-03 09:03:03
Can anyone please help me in understanding the process and Java APIs used while timestamping a signature. I need to sign a file and timestamp it using TSA url " http://timestamp.globalsign.com/scripts/timstamp.dll " using Java APIs. I am able to sign the file using java.security APIs but unable to timestamp it. Your question is a bit broad... I will give you some info which I hope it will point you on the right direction. The thing is that you want to use a timestamp service to perform a timestamp signature using the service there: http://timestamp.globalsign.com/scripts/timstamp.dll . First