Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
4answers
118 views

How best to modify and return a C# argument?

I need to take a Widget that already has several property values set. I need to change the Widget's name. I'm drawn toward Option 3, but I'm having a hard time articulating why. public void ...
5
votes
4answers
958 views

How can I digitally sign an executable?

I'm coding software that requires administrative access. When a UAC dialog pops up, it shows a different popup for digitally signed software than non-signed software. I believe digitally signing my ...
5
votes
2answers
172 views

C#: Method signatures?

Let's say I create these two methods: public void AddScriptToPage(params string[] scripts) { /*...*/ } public void AddScriptToPage(string href, string elementId) { /*...*/ } Which one of these ...
4
votes
2answers
252 views

Example of nested signatures in OCaml?

In OCaml, you can nest signatures: module type FOO = sig module type BAR (* … *) end I was just wondering if anyone had any examples of this in use, since I can’t think of any places where it ...
4
votes
1answer
220 views

When calling Windows API functions from C#, which source for signatures to trust: .NET Framework source code or PInvoke?

For example, this is from .NET Framework source file UnsafeNativeMethods.cs: [DllImport(ExternDll.User32, ExactSpelling=true, CharSet=CharSet.Auto)] public static extern bool GetWindowRect(HandleRef ...
1
vote
1answer
29 views

Why does this Function have a Non Compatiable Signature with this Delegate?

The compiler is telling me that these signatures are incompatiable, but they seem fine to me. Am I missing something? [VS 2008] Public MustOverride Function ...
1
vote
1answer
431 views

Antivirus scan speed optimization

I have been developing an antivirus using vb.net. The virus scanner works fine but I was thinking of ways to optimize the scanning speed (because large files take forever). The algorithm I'm using ...
1
vote
2answers
99 views

Can I avoid committing to particular types in a module type and still get pattern matching?

I have two module types: module type ORDERED = sig type t val eq : t * t -> bool val lt : t * t -> bool val leq : t * t -> bool end module type ...
1
vote
3answers
1k views

Where do I get a list of all known viruses signatures?

I have written some antivirus software in Python, but am unable to find virus signatures. The software works by dumping each file on the hard disk to hex, thus getting the hex signature. Where do i ...
1
vote
3answers
1k views

Adding methods to the webservice: do old clients need to update web references?

ProductA uses our only web service, which is a separate deployment from ProductA. We deploy both to production. Later, we're writing ProductB. During that effort, we add a new method to our only ...
1
vote
1answer
438 views

How do I Install the signatures module on Strawberry Perl 5.10.1?

I seem to be having some issues trying to install the signatures module from CPAN using Strawberry Perl 5.10.1 on Windows XP. I get some "undefined reference" errors during linking. I'm guessing that ...
0
votes
0answers
22 views

Is it possible to set up a HTML signature in MS Entourage?

This is a weird one, I know. I've designed an email signature with a few images, links and some paragraph styles. The client I am working with uses MS Entourage 2008 (on Mac). I was wondering if ...
0
votes
0answers
112 views

Capture user signatures in PHP

I currently have a working version capturing signatures on a desktop browser. I'm using Signature Pad by Thomas J Bradley and outputing the signature to a PNG. After the signature output I'm using ...
0
votes
2answers
64 views

App for signing PDF's and categorizing them on a webserver

I've been researching the best way to implement an application for my brother's business, and have been pretty stumped in terms of how to structure my application. The application will be run on iPad ...
0
votes
0answers
74 views

Getting a Method Signature from a Native method, from Java

I am working to call native methods via Java/JNI, in Windows. The basics are fine. My problem is that I do not know the exact method signature of one of the methods. I have its name. Does anyone ...
0
votes
1answer
77 views

VS2010 Intellisense: navigate signatures w/ keyboard?

new XmlSerializer(). I typed the code above, and an Intellisense menu appears. One of the options in the menu is the Serialize method. I nagivate to that using my keyboard. Once Serialize is ...
0
votes
0answers
216 views

How do I eliminate the blank line before an outlook 2010 signature

I'm currently using Microsoft's Office Outlook 2010 as an email client, and I would like know how to eliminate a blank line which appears before my signature every time i reply to an email. I have ...
0
votes
1answer
129 views

How to create a dynamic image that updates when requested?

So I'm trying to make my own forum signature generator for some friends, and I've gotten most of the work done. My real issue now is refreshing the information when the image is requested from my ...
0
votes
1answer
115 views

Axis2 problem with signature verification - probably caused by HTML character references

I have used Axis2 to built a client for WebService using message signing (service run on Websphere). Client works fine but in some cases service sends response containing HTML character references ...
0
votes
3answers
251 views

Login session id's with hash

I have read that the usual way of handling login sessions is by storing a long random string server-side and setting a cookie with this string as its value. What are the reasons why one shouldn't try ...
0
votes
1answer
128 views

Virus database main.cvd uncompression

In my previous question, I asked where I can get a hex virus signature database, and the answer was: ClamAV. So I downloaded the "main.cvd" database and was told that it was a compressed tar file. I ...
0
votes
2answers
512 views

Hexadecimal virus signatures database

Over the past couple of weeks, I was in the process of developing a simple virus scanner, it works great but my question is: does anybody know where I can get a database (a single file) that contains ...
0
votes
3answers
187 views

Speaker Recognition

How could I differentiate between two people speaking? As in if someone says "hello" and then another person says "hello" what kind of signature should I be looking for in the audio data? periodicity? ...
0
votes
1answer
417 views

Firefox plugin to capture signature (via stylus/tablet)

I am wondering if anyone has any experience capturing signatures with a tablet/stylus over the internet. How would you write a plug-in that uses an ActiveX control and can securely post the signature ...
0
votes
2answers
447 views

Splitting GPG encrypted messages into packets?

As an example, let's say that Alice signs a message with her secret key and encrypts the message and signature with Trent's public key. Trent decrypts the message and signature with his secret key, ...
-2
votes
4answers
581 views

VB.net MD5 checksums to Hex

I have a database of 700,000 MD5 virus signatures in the following format: 83968:961ed981485cea5ab3936496966ba0d6:Worm.Gaobot-318 86016:4bed8673ab3d695c52c233306ed3f733:Worm.Gaobot-319 My question ...