Skip to main content

Questions tagged [encryption]

Encryption is the process of transforming information (called plaintext) into an unreadable form (called ciphertext) using an encryption algorithm using a secondary parameter (called an encryption key). Only those who possess the decryption key can easily reverse the process and recover the original plaintext. Conceptual questions about encryption may get better answers on crypto.stackexchange.com.

0 votes
0 answers
15 views

Reading and decrypting files on MIFARE DESFire EV1 vs EV3 smart cards

I have a problem with reading and decrypting EV1 and EV3 versions of MIFARE DESFire smart cards. I'm using Dot Net 8.0 and C#, both on Windows and Linux, and PCSC sharp. If I read and decrypt EV3 card ...
Slavek's user avatar
  • 1
1 vote
0 answers
19 views

Combine CodeMeter license management with SQL Server Always Encrypted

I would like to activate Always Encrypted into my SQL Server database to protect a few sensible columns and access it from an external application. As per my understanding, I have to: Configure ...
Gabriele Buffolino's user avatar
0 votes
0 answers
10 views

Implementing TLS beetwen two PLC´s on Scada LTS?

I would like to implement a TLS connection between two simulated components (PLC) or between a PLC and a Scada Historian on Scada LTS. This is necessary for a simulation - is this possible with Scada ...
broadark's user avatar
-1 votes
0 answers
14 views

What is saslprep ? why its required a stun username password to be used with saslprep?

I have gone through RFC about could not understand the purpose of it can anybody dumb it down for me please.
Usama's user avatar
  • 32
-3 votes
0 answers
27 views

How to decrypts the cipher texts which were encrypted chunk by chunk of different sizes? [closed]

I am trying to do encryption with OpenSSL v3 using AES 256 Key on C++-Linux platform. I have encrypted two chunks of data separately as follows (i have some constrains; hence encryptions are to be ...
Prasanth's user avatar
-1 votes
0 answers
14 views

Nextjs 13/14 - Where to decrypt payload, on client side or server side?

I would like to send an encrypted payload from my backend to my frontend application. Where should I be decrypting the payload on my frontend of NextJS 13? Should it be on the server side or client ...
bulbasarous's user avatar
-1 votes
1 answer
21 views

Decrypting an ec encoded text with a public key

Can someone please help me finding a way to decrypt a text encrypted with an EC private key? What I am trying to do is I am trying to understand how SSL certificates are structured and signed. For ...
krop's user avatar
  • 81
0 votes
0 answers
42 views

AES GCM Java BouncyCastle decryption fails second time

Using the below lines of code for Encrypting and Decrypting using BouncyCastle for decrypting data received from a 3rd party source based on C. First encryption and decryption works fine(basis the ...
Suraj Putta's user avatar
-4 votes
0 answers
18 views

CamsPay eNach API Node.JS - Incorrect Key Length

var crypto = require("crypto"); var algorithm = "aes-256-cbc"; var self = module.exports = { encryption: function (inputdata, key) { // Generating 16 bytes random ...
Priyank Modi's user avatar
0 votes
1 answer
45 views

What is the difference between aes encryption in python and javascript

When I use JavaScript to encrypt some string: import crypto from 'crypto'; function encryptSeed(text, key, iv) { key = Buffer.from(key, "utf8"), console.log("key:" + key....
Singun's user avatar
  • 101
0 votes
0 answers
36 views

DETERMINISTIC_DECRYPT_STRING failed: Keyset deserialization failed: Error reading keyset data: Could not parse the input stream as a Keyset-proto

I have a data encryption key encrypted (DEK) that was used to encrypt some values using the algorithm AES256 and the encrypted values are in a BigQuery table. I am using the KMS provided by Google to ...
Noura's user avatar
  • 59
-2 votes
0 answers
33 views

Encryption/decryption problem with basic password manager [closed]

So I'm new to Python and doing a basic password manager from this video and I'm running into this problem with encryption/decryption I tried using fernet from cryptography and encoding then decoding ...
Biskit123's user avatar
0 votes
1 answer
36 views

How is a private key more than just an encrypted password? [closed]

I'm trying to understand public and private keys, instead of just using them. I understand that both the public and private key have to create a pair, but if the server you want access to is receiving ...
Nora McDougall-Collins's user avatar
1 vote
0 answers
42 views

How can i implement a triple aes encryption to make dpa attack last a little longer on my case study? [closed]

I am trying to implement tmr methodology for my AES operation and i want to do it with the same key and the same plaintext slightly changed randomly for the last two plaintexts. I also added a voter ...
vedizo's user avatar
  • 11
0 votes
0 answers
15 views

Is it possible to extract apk and zip it again using build.gradle?

I'm doing a task to encrypt the dex files. Below code I wrote in build.gradle for encrypting and compress it back as apk. applicationVariants.all { variant -> variant.outputs.each { output -...
Will Nguyen's user avatar

15 30 50 per page
1
2 3 4 5
2483