1
vote
2answers
443 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 …
0
votes
4answers
326 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 …
8
votes
4answers
376 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 …
1
vote
4answers
325 views
C++ Symmetric Binary Operators with Different Types
Hello,
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 …
3
votes
6answers
786 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
4answers
376 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), …
1
vote
2answers
321 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 …
