Questions tagged [asymmetric]
42 questions
1
vote
3 answers
Terminal I/O (how to emulate terminal read/wrtie with specific memory region?)
I'm working on the Embedded platform, where I have full access to directly read/write physical memory.
I'm also working on asymmetric processing, in which I have a real time application running concurrently with Linux but totally isolated from…

Patrick
- 4,186
- 9
- 32
- 45
1
vote
0 answers
Proc logistic to get asymmetric binary model results
I am doing predictive analytics in SAS using proc logistic to predict a binary outcome to guide decision making. One measure of accuracy is the misclassification rate, but in my case the desired model is asymmetric in the sense that a false…

Rob_in_WI
- 11
- 1
1
vote
1 answer
Give specific controller to a specific pawn dynamically?
I have to create an asymmetric game in blueprint. I got 2 different pawns spawning in each level. Each pawn has to have a specific controller because we need different views, controls and characters.
So, spawnActor is the answer to spawn a pawn I…

piims
- 11
- 2
1
vote
3 answers
Create asymmetrical multidimensional array in PHP
I have a small issue I can't seem to figure out easily. The fix is probably quite easy but I am too much of a noob to fix it myself. Perhaps you guys could shed some light on this.
The issue
I need to create a multidimensional array in PHP. This…
user3879583
1
vote
1 answer
Creating Random Binary Asymmetric Square Matrices in R
I am trying to create random binary square matrices. However, there are some constraints. I would like the diagonal to = 0. Also, the upper and lower triangles need to be inverse transpositions of each other.
To be clear, what I am looking for…

jalapic
- 13,792
- 8
- 57
- 87
1
vote
1 answer
Google Now-like asymmetrical grid on tablet
Does anybody have an idea how was a gridview with items of uneven height implemented?

urSus
- 12,492
- 12
- 69
- 89
1
vote
1 answer
Calculate asymmetric difference of two lists in Java 1.4
I've got two lists:
List x = [1, 2, 5, 7, 8];
List y = [1, 3, 4, 5];
I'm trying to get the following calculated asymmetric differences:
x - y (what's in x that's not in y) => 2 7 8
y - x (what's in y that's not in x) => 3 4
I've already checked…

resilva87
- 3,325
- 5
- 32
- 43
0
votes
1 answer
How to define asymmetric + operator
I'm trying to define the + operator for int + Date and make it return an int. So I define operator+ as a member to define Date + int, and I define a non-member function operator+(int, Date), but when using it in the main it doesn't seem to use that…

reverse_engineer
- 4,239
- 4
- 18
- 27
0
votes
0 answers
Xamarin forms app: how to digitally sign using private key from keystore
I want to use asymmetric key pairs to sign/verify data sent from an Xamarin forms smartphone app to a web service.
I have an Xamarin forms smartphone app targeted at Android and iOS devices. The client on the device connects through a web service to…

polymechan
- 1
- 2
0
votes
0 answers
Spring Cloud Config Asymmetric encryption error on Unix Machine
I got the following response while trying to encrypt using Asymmetric encryption on unix machine
{
"description": "The encryption algorithm is not strong enough",
"status": "INVALID"
}
localhost:8012/encrypt
This url response ok but…

yasin cakmak
- 21
- 4
0
votes
1 answer
Trying to understand why the padding is invalid in this AES method
I'm in the middle of porting an older application to .Net 6, and have hit a stumbling block of the encryption / decryption method is now failing. It still works perfectly fine under .Net 4.x.x.
The error being thrown is,
"Padding is invalid and…

user2295457
- 101
- 11
0
votes
0 answers
How to fit data with asymmetric error bars
I hope someone can help me with the following problem:
I have a set of data, each one with the shape [y_best, y_min, y_max], where y_min and y_max are the extremes of the error bar; just to give an idea:
enter image description here
I want to fit…

Tai_Zone
- 1
0
votes
0 answers
PTB-OpengGL stereo rendering and eye seperation value
I tried to draw a 3D dot cloud using OpenGL asymmetric frustum parallel axis projection. The general principle can be found on this website(http://paulbourke.net/stereographics/stereorender/#). But the problem now is that when I use real eye…
0
votes
1 answer
Gpg4Win batch asymmetric encryption from Windows service with LocalSystem account
I'd like run the Duplicati backup soft as a Windows service for 2 reasons : gather all users files and run even no one is logged in. Also, even if the system was a single user one, I wouldn't like to rely on supplying the user's Windows password…

useful
- 147
- 5
0
votes
1 answer
Unknown characters at starting while parsing from private key in Asymmetric Algorithm
I am trying to implement asymmetric algorithm in Android. I have managed to do it all. But I am facing an issue while output.
What I am getting after decrypting through private key is(Which contains actual text in the end):…

Ranjan
- 1,326
- 18
- 38