Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
685 views

Mutual SSL - how much authentication is sufficient?

Suppose you have a mutual SSL service, which in addition to the SSL, has application authentication. Thus, clients provide certificates (as well as servers), but the client request (e.g., REST ...
3
votes
5answers
3k views

Difference Between Monitor & Lock?

What's the difference between a monitor and a lock? If a lock is simply an implementation of mutual exclusion, then is a monitor simply a way of making use of the waiting time inbetween method ...
2
votes
0answers
17 views

Is it possible to use SIM card to mutual authentication on access to a secure web server with Android?

My intention is to use Android (browser) to mutual authenticate on a web server. For that would be nice if the Public Cert from the SIM card could be use and the signing operation from the SIM card ...
2
votes
1answer
213 views

SSL client certificate protected URL from oracle stored procedure

Is it possible to access an SSL client certificate protected URL from an oracle stored procedure somehow? With UTL_HTTP or with UTL_DBWS? With a Java stored procedure perhaps? A code example would be ...
0
votes
1answer
60 views

Primary Keys are a Foreign Key of two different mutually exclusive tables

I'm having a problem on how to design a table that must have a Primary Key which is a foreign key to two mutually exclusive tables. +----------------+ +-----------------+ | PARTY ...
0
votes
0answers
228 views

Mutual friend request returns wrong mutual friends

Our app shows users mutual Facebook friends. It is now showing friends of that mutual friend as well. How do I get it to show JUST mutual friends? I don't want to see friends of a mutual friend or ...
0
votes
2answers
172 views

What function in Social Graph loads mutual friends so fast?

I am making a Facebook application for which I require the mutual friends of the logged in user. The Old API friends.getMutualFriends does the work but it is very slow. I was wondering if there is any ...
0
votes
0answers
45 views

Mutual Authentication - custom Algorithm

i currently use the RSA-algorithm to create client- and server-certificate for secure my http and putty connection's. How can i integrate my own algorithm? EDIT: ok, i need to use CryptoAPI / ...
0
votes
2answers
94 views

Ruby on rails - mutual exclusion

Ruby on rails question! I have a model "categories": t.string :c1 t.string :c2 t.string :c3 A category could be: Ferrari, red, maxspeed. I created some categories, and I want to ...
0
votes
4answers
334 views

clone syscall and mutual exclusion

I'm trying to practice with clone syscall and a little example of an incrementing counter shared by 2 threads. Code is as follows: #define _GNU_SOURCE #include <sys/types.h> #include ...
0
votes
2answers
127 views

Computation of Mutual Information

Suppose M is a set of objects m each having attributes X and Y. Now if X and Y can have only one value for given m (i.e. X,Y are random variables with P(X=x_i|M=m_i), P(Y=y_i|M=m_i)), it's possible to ...
-1
votes
1answer
115 views

How to get a friend list with the number of mutual friends?

I'm developing a Facebook app, one of the things that I need is: a list with two columns - name and number of mutual friends. I want this for every friend I have. I already saw the documentation and ...