hot questions tagged symmetric - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T09:51:24Zhttp://stackoverflow.com/feeds/tag?tagnames=symmetric&sort=hothttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/939687/symmetric-encryption-key-vs-asymmetric-keys-ssl1Symmetric encryption key vs. Asymmetric keys - sslmsvcyc2009-06-02T13:52:12Z2009-06-02T13:56:55Z
<p>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 between the client and the server. One option is to continue with the data transfer on the established secure ssl channel between the client and the server even though the encryption/decryption process will be slow because of the use of asymmetric keys. The other option is to transfer a symmetric key on the ssl channel and close the ssl channel once the symmetric key is delivered to the client. Communication thereafter will happen on a regular TCP channel using the symmetric key which I believe will be much faster than using asymmetric keys. Are there any downsides to this approach? One thing that is obvious with the symmetric key approach is the process of key management which I am thinking of handling by not storing the keys on the client at all. Symmetric key will be delivered to the client on start up over an SSL channel. Key will NOT be stored in the client at all. Any thoughts?</p>
http://stackoverflow.com/questions/791822/prolog-symetrical-predicates0Prolog -- symetrical predicatesshake2009-04-26T23:28:05Z2009-04-30T02:50:27Z
<p>I have to simulate family tree in prolog.
And i have problem of symetrical predicates.
<strong>Facts:</strong></p>
<pre><code>parent(x,y).
male(x).
female(y).
age(x, number).
</code></pre>
<p><strong>Rules:</strong> </p>
<p>blood_relation is giving me headache. this is what i have done:</p>
<pre><code>blood_relation(X,Y):-ancestor(X,Y).
blood_relation(X,Y):-uncle(X,Y);brother(X,Y);sister(X,Y);(mother(Z,Y),sister(X,Z));(father(Z,Y),sister(X,Z));(father(Z,Y),brother(X,Z)).
blood_relation(X,Y):-uncle(X,Z),blood_relation(Z,Y).
</code></pre>
<p>and i am getting i think satisfactory results(i have double prints - can i fix this), problem is that i want that this relation be symetrical. It is not now. </p>
<pre><code>blood_relation(johns_father, joh):yes
blood_relation(john,johns_father): no
</code></pre>
<p>so..is there a way to fix this.
And i need query: All pairs that are not in blood_relation..</p>
http://stackoverflow.com/questions/611915/obscure-encrypt-an-order-number-as-another-number-symmetrical-random-appear8Obscure / encrypt an order number as another number: symmetrical, "random" appearance?Larry OBrien2009-03-04T18:45:41Z2009-03-04T20:21:10Z
<p>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 to be unique and reversible (it's really an encryption of the actualOrderNumber). </p>
<p>My first thought was to just shuffle some bits. When I showed the client a sample sequence, he complained that subsequent obfuscOrderNumbers were increasing until they hit a "shuffle" point (point where the lower-order bits came into play). He wants the obfuscOrderNumbers to be as random-seeming as possible.</p>
<p>My next thought was to deterministically seed a linear congruential pseudo-random-number generator and then take the actualOrderNumber th value. But in that case, I need to worry about collisions -- the client wants an algorithm that is guaranteed not to collide in at least 10^7 cycles. </p>
<p>My third thought was "eh, just encrypt the darn thing," but if I use a stock encryption library, I'd have to post-process it to get the 8-or-9 digits only requirement.</p>
<p>My fourth thought was to interpret the bits of actualOrderNumber as a Gray-coded integer and return that. </p>
<p>My fifth though was: "I am probably overthinking this. I bet someone on StackOverflow can do this in a couple lines of code." </p>
http://stackoverflow.com/questions/702647/c-symmetric-binary-operators-with-different-types1C++ Symmetric Binary Operators with Different TypesScott2009-03-31T19:22:32Z2009-04-01T06:23:39Z
<p>Hello,</p>
<p>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 to illustrate my concerns:</p>
<pre><code>class A;
class B;
class A
{
private:
int x;
public:
A(int x);
int getX() const;
int operator + (const B& b);
};
class B
{
private:
int x;
public:
B(int x);
int getX() const;
int operator + (const A& A);
};
A::A(int x) : x(x) {}
int A::getX() const { return x; }
// Method 1
int A::operator + (const B& b) { return getX() + b.getX(); }
B::B(int x) : x(x) {}
int B::getX() const { return x; }
// Method 1
int B::operator + (const A& a) { return getX() + a.getX(); }
// Method 2
int operator + (const A& a, const B& b) { return a.getX() + b.getX(); }
int operator + (const B& b, const A& a) { return a.getX() + b.getX(); }
#include <iostream>
using namespace std;
int main()
{
A a(2);
B b(2);
cout << a + b << endl;
return 0;
};
</code></pre>
<p>If I would like to have symmetry among the two types, which method is the best approach in the above code. Are there any possible dangers in choosing one method over the other? Does this vary with the return type? Please explain! Thank you!</p>
http://stackoverflow.com/questions/118463/what-is-the-performance-difference-of-pki-to-symmetric-encryption3What is the performance difference of pki to symmetric encryption?stevemac2008-09-23T00:44:31Z2008-09-23T22:13:06Z
<p>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.</p>
<p>I think that I know that PKI is much slower and more complex than symmetric encrpyption, but I can't find the numbers to back up my feelings.</p>
http://stackoverflow.com/questions/412823/rectcontainspoint-or-pointisinsiderect2Rect::contains(Point) or Point::is_inside(Rect)Iraimbilanja2009-01-05T11:11:40Z2009-01-05T12:19:44Z
<p>Should an API provide Rect::contains(Point) or Point::is_inside(Rect) or both?
or Math::contains(Point, Rect) cause it's symmetric?</p>
<p>The same Q goes for LineSegment::contains(Point), Rect::fully_contains(Circle) etc.</p>
http://stackoverflow.com/questions/68346/implement-symmetric-difference-in-sql-server1Implement symmetric difference in SQL Server?Jake2008-09-16T00:52:53Z2008-10-16T04:17:14Z
<p>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.</p>
<p>I have a given database D, which has been duplicated on another machine (in a perhaps dubious manner), resulting in database D'. It is my task to check that database D and D' are in fact exactly identical.</p>
<p>The problem, of course, is what to actually do if they are not. For this purpose, my thought was to run a symmetric difference on each corresponding table and see the differences.</p>
<p>There is a "large" number of tables, so I do not wish to run each symmetric difference by hand. How do I then implement a symmetric difference "function" (or stored procedure, or whatever you'd like) that can run on arbitrary tables without having to explicitly enumerate the columns?</p>
<p>This is running on Windows, and your hedge fund will explode if you don't follow through. Good luck.</p>