Tagged Questions
The asymmetric tag has no wiki summary.
2
votes
0answers
288 views
Mapping bidirectional asymmetric relation in hibernate: OneToOne-ManyToOne
I have an entity that has reference to another entity that represents the current state of certain properties, thus allowing me to keep track of the history of changes made. For this, I have defined a ...
2
votes
1answer
634 views
Asymmetric Crypto on Android
I would like to ask if i can use Asymmetric Crypto (like RSA or ECC) on android mobile phones, how, and what are the best libraries i should use.
1
vote
1answer
188 views
Save a SecKeyRef Asymmetric Key Pair to disk as a Certificate
I have created two SecKeyRef items via SecKeyGeneratePair, but now I would like to turn the public key into a x509 Digital Certificate – and/or both the public and private keys into a PKCS #12 (.p12) ...
1
vote
3answers
117 views
Asymmetric nearest-neighbour in Java
From a sorted map, I want to retrieve a subset of n entries, starting m entries before a specified value v. For example, for the key set k = {0.2, 0.3, 0.4, 0.6, 0.8, 0.9, 1.0}, a query with n=5, m=2, ...
1
vote
0answers
116 views
1
vote
3answers
719 views
Java public private key decryption issue
I am trying to encrypt and decrypt a message as mentioned in the below code. Basically I want to encrypt a message with a public key and convert that encrypted message from byte array to String. And ...
1
vote
1answer
364 views
Asymmetric digital signature Node.JS
I need to find some criptographic solution, which allows me to sign some data using private key, and check signature using public key. Would be great if there is some nodejs package.
Thanks!
1
vote
2answers
101 views
Make antisymmetric key in SQL
ALTER TABLE `test` ADD UNIQUE (
`a` ,
`b`
);
I want that after creating this unique key, it won't be possible to add B,A.
For example: "Michael", "Jackson", won't allow inserting later "Jackson", ...
1
vote
3answers
279 views
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 ...
1
vote
1answer
213 views
How to encrypt a file using a Public Key in C#?
I have a 2048 bits public key (asymmetric, RSA) of which I know the Modulus and Exponent and need to encrypt a string.
Ideally, I want to encrypt a small string in c# and later on decrypt it with ...
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
1answer
12 views
asymmetric key creation over network
I'm attempting to add an assembly to a database in SQL2008 using an asymmetric key.
We're adding the assembly using a hex string (adding assemblies to servers through sql queries only)
USE [master]
...
0
votes
1answer
20 views
public/private key authentication and signing
I'm working on a Single Sign On solution to allow my company to integrate with other vendors.
As I'm doing my research, one thing is constantly confusing me.
My understanding of Public/Private key ...
0
votes
1answer
99 views
Hot to encrypt using PHP and decrypt with Outlook Express
I'm trying to create this kind of system:
-an user writes a mail with confidential data in it
-I manage them with PHP, sending them to the administrator
-only administrator should be able to open ...
0
votes
0answers
18 views
Asymmetric template operator overloading returning a reference
Thanks in advance for any help.
My question is as follows
suppose I had a templated structure
template<class T>
struct A
{
//junk
template<class T2>
A<typename ...
0
votes
2answers
277 views
x509 certificate key to asymmetric algorithm
Re-doing this question since I don't know if I was getting my point across correctly.
I have a signedXML object
Dim signedXml As New SignedXml(envelope)
I need to set the SigningKey property of ...