The symmetric tag has no wiki summary.
1
vote
4answers
59 views
How to add symmetric values with jquery
I have this markup:
<div class="container">
<figure></figure>
<figure></figure>
<figure></figure>
</div>
Now: I need to add for each of ...
2
votes
2answers
62 views
numpy: find symmetric values in 2d arrays
I have to analyze a quadratic 2D numpy array LL for values which are symmetric (LL[i,j] == LL[j,i]) and not zero.
Is there a faster and more "array like" way without loops to do this?
Is there a ...
1
vote
1answer
44 views
Symetrical positions in matrix
Given an (i,j) element in a matrix what is the symmetrical correspondent in the matrix. I am trying to create a function that generates a symmetrical matrix in c. Thanks a lot.
Also would it be wise ...
0
votes
1answer
28 views
symmetric Decrypting returns a NULL value
I have two databases . I copied all the data from one table and inserted into another database table . I have created symmetric key on second database but when i try to run the query as follow
OPEN ...
1
vote
3answers
81 views
Checking if array is symmetric
public class symm
{
/*
* Returns true if array A is symmetric.
* Returns false otherwise.
* n is the number of elements A contains.
*
* The running time of your algorithm is O( ).
* You may ...
-2
votes
1answer
71 views
Java - 2darray.length: how make loop through colums instead of rows?
public static int[] getMinimumSymmetricOfEveryRow (int [][] A)
{
int min = Integer.MAX_VALUE;
int[] arr=new int[A.length];
for (int i = 0; i < A.length; i++){
for (int j = 0; j ...
0
votes
2answers
72 views
cheking on symmetric number
How check number on symmetrics?
public static int Symmetric(int a) {
if(new StringBuilder(Integer.toString(a)) ==
new StringBuilder(Integer.toString(a)).reverse())
return a;
...
1
vote
2answers
81 views
Double iteration on HashMap with symmetric result (skip redundant cases)
i've got a LinkedHashMap and I'm double iterating over it as stated in the code below:
LinkedHashMap<Integer,Integer> nmResultMap = getResultMap();
float[][] results = new ...
0
votes
1answer
113 views
Symmetric DS taking too long on DataExtractorService
I'm using SDS to migrate data from a SQL server to a Mysql database. My tests of moving the data of a database that was not in use worked correctly though they took like 48 hours to migrate all the ...
1
vote
1answer
56 views
Is it possible that calling objSocket.EndReceiveFrom removes NAT entry of address mapping from router?
I am working on one research where I am making NAT traversal specifically for Symmetric.
Out of 16 possible combination of (FullCone, RestrictedCone, PortRestrictedCone, Symmetric) I have established ...
1
vote
0answers
52 views
h5py symmetric array using pointers
I've been looking for a way to create a custom h5py array that is in the end symmetric. Ideally it would be an array such that when it was created had a single value that a[i][j] and a[j][i] pointed ...
1
vote
0answers
36 views
Encryption By Certificate
I am encrypting customer name in database at database level. While saving in database only first letter of customer name is saved and hence while decrypting only first letter is retrieved.
The ...
1
vote
1answer
78 views
From asymmetric matrix (or dataframe) into a symmetric square matrix with R
Given this data.frame: 'sample', which represents pairwise wins and losses among species:
sp1<-c(0,1,0)
sp3<-c(1,2,2)
sp5<-c(3,1,0)
...
0
votes
0answers
150 views
Requesting advice on symmetric encryption implementation in .net [closed]
I am writing a c# class to encrypt and decrypt strings. The encrypted string, which are simply short pieces of information, will be stored in a database.
Is the following approach to implementing ...
0
votes
1answer
236 views
Error in symmetricds client set up
Unable to set up client which is derby and server is mysql
C:\symmetric-ds-3.0.1-server\symmetric-ds-3.0.1\samples>..\bin\dbimport --engine
client1 --format XML create_sample.xml
Log output ...
2
votes
1answer
182 views
How to keep the StrokeThickness of a rectangle uniform/symmetric?
Ok. I know. My problem is really ridiculous, but I refuse to believe that it is not possible to solve. Just open the picture separately in a new tab and take a look at it!
In my opinion the right ...
2
votes
1answer
143 views
SymmetricDS system tables on a different schema other than public
Is there a way to have SymmetricDS system tables to be put on any other schema say 'replication' other than the default "Public" schema in PostgreSQL?
I don't want to mix the symmetric system tables ...
1
vote
1answer
131 views
Can I extract symmetric key in java SSLSocket class?
how can I get session symmetric key in Java? Is it hidden? (Looked for methods but there were none) That would make sense, however, I still need it. Is there a way to retrieve the symmetric key?
0
votes
2answers
517 views
Implementing simple symmetric encryption using java sockets
I am writing a peer to peer application and I want to implement simple symmetric encryption.
I'm looking for a good example of how to do this, I don't mind which library it uses so long as it's ...
0
votes
2answers
3k views
How to generate a random real symmetric square matrix with uniformly distributed entries
I would like to generate a random real symmetric square matrix with entries uniformly distributed between 0 and 1.
My attempt is:
a = rand(5);
b = a + a.'
My worry is that whilst matrix a is ...
-3
votes
1answer
164 views
Compare execution time of hash functions with symmetric and asymmetric cryptography
i want to compare execution time of hash functions(MD5, SHA-1 and SHA-512) and symmetric and asymmetric cryptography such as AES,DES and RSA based on crypto++ library. i haven't enough time to write ...
0
votes
2answers
175 views
Two for loops written as a while loop for assign values to a symmetric matrix
I know the logic two get into a symmetric matrix the values of an array
int k=0;
for (int i = 0; i < size; i++){
for (int j = 0; j <= i; j++){
Q[i, j] = Q[j, i]= ...
3
votes
2answers
295 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" ...
4
votes
2answers
104 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
6answers
368 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
1answer
467 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
...
4
votes
2answers
266 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?
6
votes
1answer
413 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 ...
27
votes
3answers
1k 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 ...
10
votes
3answers
270 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. ...
1
vote
1answer
2k 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
223 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 ...
0
votes
1answer
872 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
259 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
518 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 ...
1
vote
1answer
137 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 ...
0
votes
2answers
639 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 ...
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 ...
0
votes
3answers
2k 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 ...
1
vote
4answers
1k 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 ...
17
votes
6answers
3k 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 ...
3
votes
4answers
1k 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), ...
4
votes
6answers
5k 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 ...
