Questions tagged [timestamping]
67 questions
1
vote
0 answers
Jar signing timestamp service runtime requirement
If I sign a JAR with a timestamp is it a requirement that the timestamp service be accessible at runtime when the JAR is downloaded?
The reason I ask is that the application is used without access to the internet, and is launched via Java…

Michael R
- 81
- 1
- 3
1
vote
1 answer
How to timestamp each new post (and saved with it in Firebase) as users submit them?
I understand that current date and time is from new Date.getTime()
How can I implement it so that each new post by all users will be stamped with a date and time and saved together with the post content?
Is it var timestamp = new Date.getTime() or…

Thinkerer
- 1,606
- 6
- 23
- 43
1
vote
8 answers
How can I (reasonably) precisely perform an action every N milliseconds?
I have a machine which uses an NTP client to sync up to internet time so it's system clock should be fairly accurate.
I've got an application which I'm developing which logs data in real time, processes it and then passes it on. What I'd like to do…

Jon Cage
- 36,366
- 38
- 137
- 215
1
vote
0 answers
Validate Digital Signature using Signature Timestamp
The X509Certificate2Collection.Import method allows to retrieve all certificates from an executable file or from an MSI package. That's fine.
Now I want to validate the certificates. The X509Certificate.Verify method validates a certificate against…

Michael Damatov
- 15,253
- 10
- 46
- 71
1
vote
1 answer
How to validate a TimeStampToken using a .cer file from filesystem?
There are two validate methods in the TimeStampToken class (bctsp-jdk16-1.46.jar), one of them is deprecated.
The deprecated method uses a X509Certificate as argument, and that's quite easy to create.
InputStream inPFX =…

user1096301
- 15
- 5
0
votes
1 answer
Add up sum of time in android SQLite database
I have a database that time stamps every five minutes, or less if the user stops the database. How can I take the sum of the difference between the time stamps and add them up?
EDIT
I have six different times all five minutes apart and one time the…

Christian
- 958
- 5
- 23
- 52
0
votes
0 answers
Is there any PDFBox sample to make Document Timestamp Signature as LTV enabled?
I am trying to implement Document Timestamp (a separate signature with type DocTimeStamp and SubFilter ETSI.RFC3161) and Signature Timestamps (timestamp token as unsigned attribute to current signature). I am trying to understand what all changes in…

Qazazazaz
- 11
- 4
0
votes
0 answers
Historical Camarilla Levels
I've got a simple historical camarilla indicator that I'm mostly happy with, save for one detail. My horizontal lines are plotted from 9:30 until 9:30 the next day, except on the Friday to Monday transition. I don't really understand why this…

TraderGeo
- 1
- 1
0
votes
0 answers
Record audio timing (triggered, recieved and processing)
So I am working on a project where I have to record audio timing. The timings are as follows:
t_0 - when I trigger the microphone device to start recording
t_1 - when the microphone starts recording
t_2 - the time when the computer receives the…
0
votes
1 answer
Purpose of IP_RECVERR message when working with TX timestamps
I am exercising Linux timestamping capabilities (TX timestamps in particular).
Everything is working fine, I just cannot understand why reading from MSG_ERRQUEUE has to give me two ancillary messages: SO_TIMESTAMPING & IP_RECVERR.
That's perfectly…

NwMan
- 187
- 1
- 2
- 10
0
votes
1 answer
Timestamps Misbehaving
Preface: This program is for a school assignment. When I run the program on my machine everything seems to function properly. However, the evaluators encounter issues with timestamp conversions.
public abstract class TimeUtil {
private static…

Forrest Young
- 1
- 1
0
votes
0 answers
Timestamp server for automated load testing
I'm looking for a timestamp server that will be safe to use for automated load testing. I need to test hundreds of users digitally signing files using a timestamp server. There are various free TSAs available but I'm afraid of having our auto…

Felipe Seiber
- 73
- 8
0
votes
1 answer
Bash: add timestamp prefix to log without using "ts"
I have a bash command which prints a lot of content over time. Now i want to add the current timestamp as prefix before every line.
I am aware that there exists the "ts" command of the library "moreutils". Unfortuanly i can't use it.
Is there…

Steffan
- 1
- 2
0
votes
0 answers
How to add timestamp certificate without signature using setasign
I want to add timestamp certificate using setasign. I have tried to do it using timestamp() method. But after adding it, when I am checking it, it's showing as signed certificate instead of Timestamp certificate. I have also tried…

Jobayer
- 1,221
- 1
- 14
- 22
0
votes
1 answer
I want to get a timestamp on edit in my datetime row, but I need it to also timestamp when I copy/paste multiple rows in google script
I'm trying to add timestamps to my datetime row on edit. What I'm getting right now is if one row is edited at a time it works. However, what I need is to timestamp every row when I copy/paste values in over multiple rows.
function…

Phil_wew
- 3
- 2