Tagged Questions

1
vote
2answers
328 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 secu …
0
votes
4answers
263 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 …
7
votes
4answers
347 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" …
1
vote
4answers
278 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 …
3
votes
6answers
713 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 …
2
votes
4answers
334 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
304 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 …