Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

26
votes
3answers
589 views

Is JavaScript's double equals (==) symmetric?

There are many cases in which JavaScript's type-coercing equality operator is not transitive. (See, for instance, JavaScript equality transitivity is weird....) But are there any cases in which it ...
14
votes
6answers
2k views

Obscure / encrypt an order number as another number: symmetrical, “random” appearance?

Client has an simple increasing order number (1, 2, 3...). He wants end-users to receive an 8- or 9- digit (digits only -- no characters) "random" number. Obviously, this "random" number actually has ...
8
votes
2answers
166 views

Eliminating symmetry from graphs

I have an algorithmic problem in which I have derived a transfer matrix between a lot of states. The next step is to exponentiate it, but it is very large, so I need to do some reductions on it. ...
6
votes
1answer
207 views

Check if a polygon is symmetric

Given a polygon (not necessary convex) in the Cartesian coordinate, i wonder if there are any way to check the symmetricalness of that polygon? I can think of an O(N) solution: using rotating ...
4
votes
2answers
57 views

Reference for lowest order complexity of sparse symmetric matrix premultiplying full vector

In a paper I'm writing I make use of an n x n matrix multiplying a dense vector of dimension n. In its natural form, this matrix has O(n^2) space complexity and the multiplication takes time O(n^2). ...
3
votes
2answers
97 views

Encryption using Javascript without sacrificing performance

I would like to enhance my web application by including symmetric encryption techniques using Javascript but I fear that I will lose the performance. Can you suggest me some good approaches please?
3
votes
4answers
994 views

Rect::contains(Point) or Point::is_inside(Rect)

Should an API provide Rect::contains(Point) or Point::is_inside(Rect) or both? or Math::contains(Point, Rect) cause it's symmetric? The same Q goes for LineSegment::contains(Point), ...
3
votes
6answers
3k views

What is the performance difference of pki to symmetric encryption?

We are looking to do some heavy security requirements on our project, and we need to do a lot of encryption that is highly performant. I think that I know that PKI is much slower and more complex ...
2
votes
0answers
27 views

How do I set hard-coded symmetric encryption in WCF using AES256?

How do I define channel security in WCF to encrypted messages using by a hard-coded symmetric key with AES256 standard? I do not want to use certificates and I am aware that this is a "weak" ...
2
votes
6answers
141 views

null and the symmetry of equals [closed]

Equality is supposed to be symmetric, right? Object someObject = new Object(); Object NULL = null; NULL.equals(someObject) => NullPointerException someObject.equals(NULL) => false What is ...
1
vote
0answers
159 views

Using SymmetricDS to replicate database between PostgreSQL and H2 Database?

I am trying to use SymmetricDS to replicate database between two nodes. One uses PostgreSQL as DBMS, one uses H2 database. But I don't know how to implement it. Please help me in this problem. Thank ...
1
vote
1answer
605 views

Symmetric matrices in numpy?

HI, I wish to initiate a symmetric matrix in python and populate it with zeros. At the moment, I have initiated an array of known dimensions but this is unsuitable for subsequent input into R as a ...
1
vote
3answers
183 views

Is the aliasing rule symmetric?

I had a discussion with someone on IRC and this question turned up. We are allowed by the Standard to change an object of type int by a char lvalue. int a; char *b = (char*) &a; *b = 0; Would ...
1
vote
1answer
100 views

Is frozenset adequate for caching of symmetric input data in a python dict?

The title more or less says it all: I have a function which takes symmetric input in two arguments, e.g. something like def f(a1, a2): return heavy_stuff(abs(a1 - a2)) Now, I want to introduce ...
1
vote
2answers
2k views

Symmetric encryption key vs. Asymmetric keys - ssl

I am developing a client server app that uses ssl (openssl) to establish a secure communication channel between the client and the server. I believe I have two options now for secure data transfer ...
1
vote
4answers
871 views

C++ Symmetric Binary Operators with Different Types

I am learning C++ and I was wondering if I could gain some insight into the preferred way of creating binary operators that work on instances of two different types. Here is an example that I've made ...
1
vote
3answers
714 views

Implement symmetric difference in SQL Server?

Here's a problem I've been trying to solve at work. I'm not a database expert, so that perhaps this is a bit sophomoric. All apologies. I have a given database D, which has been duplicated on ...
0
votes
0answers
17 views

Set unification algorithm

Say I have a text file with thousands of sets of space-delimited strings, each line containing one set: (Here the strings specifying the set members are just one character each, though in practice ...
0
votes
1answer
121 views

Speed Advantage of Symmetric Key Encryption

We've all read that a symmetric or shared key is faster than public-private keys. But what's the exact reason for this? It seems to me in either case encryption and decryption logic against a key of ...
0
votes
1answer
120 views

Symmetrical matrix with numpy

from random import * N = 100 gamma = 0.7 connect = zeros((N,N)) for i in range(N): for j in range(i+1): if random() < gamma: connect[i,j] = 1 connect[j,i] = 1 ...
0
votes
1answer
541 views

Base64 encoded output differs from as3crypto and pycrypto encryption libraries

I'm trying to use symmetric encryption to pass data from actionscript 3 (client) to python (server). The libraries I'm using are as3crypto and pycrypto, I'm not sure if I'm using these libraries ...
0
votes
0answers
160 views

Symmetric Bitwise Equations with a Small Solution Set

Suppose I know the value of a^b (or XOR(a,b)). It is impossible to know a and b for two reasons: most importantly, (i) there are "infinite" solutions and (ii) the solutions are symmetric: if (a,b) is ...
0
votes
1answer
401 views

Something missing in iPhone/PHP encryption/decryption

I have been trying to implement some encryption between an iPhone app and a PHP web service. It's not working however. It seems like the first half of the text is NOT decrypted while the second half ...
0
votes
2answers
194 views

Locally symmetric difference in sql

I have a problem similar to the stackoverflow question posed in the link below except that I need to exclude certain fields from the comparison but still include it in the result set. I'm penning ...
0
votes
2answers
371 views

Prolog: Test if an arbitrary list is symmetric

Is there a way to test wether an arbitrary list is symmetric? For example: ?- symmetric([a,b,b,a]). true. ?- symmetric([a,b,c,a]). false. ?- symmetric([a,a]). true. My attemp was to compare the ...
0
votes
3answers
1k views

Prolog — symetrical predicates

I have to simulate family tree in prolog. And i have problem of symetrical predicates. Facts: parent(x,y). male(x). female(y). age(x, number). Rules: blood_relation is giving me headache. this is ...