encryption Questions
4
As the title suggests, I would like to know if there is a way to encrypt and decrypt, using for example the RSA algorithm, data from javascript to dart and the opposite. I saw that there is a libra...
Beef asked 4/1, 2020 at 0:44
2
Solved
I'm sorry to ask your skills about a question asked so many times.
I have an issue about RSA crypthography.
I've already checked the other topics about this issue but i didn't find any helpful answ...
R asked 29/12, 2012 at 19:50
3
This problem is related to TOTP as specified in RFC6238 here: https://www.rfc-editor.org/rfc/rfc6238#section-1.2.
I am to implement the RFC6238 to generate a 10-digit TOTP password, which will be u...
Dire asked 2/3, 2017 at 3:47
13
Solved
I am trying to connect to remote sftp server over ssh with JSch (0.1.44-1) but during session.connect(); I am getting this exception:
com.jcraft.jsch.JSchException: Algorithm negotiation fail at
c...
Virtuoso asked 7/6, 2011 at 10:2
3
Solved
Jasypt (https://github.com/jasypt/jasypt) and the according Spring Boot integration (https://github.com/ulisesbocchio/jasypt-spring-boot) do not really seem to be alive any longer.
issues with the...
Chippewa asked 11/5, 2022 at 9:13
4
How exactly does encryption key rotation work? I understand it's a very good practice to continuously rotate your encryption keys for security purposes, but rotating a key would require too much wo...
Presidium asked 22/4, 2021 at 6:9
2
Solved
I am trying to read an RSA private key into .Net using BouncyCastle to test data I have previously encrypted. The encrypted data is working fine using the public key and Bouncy Castle and I have al...
Kellner asked 28/11, 2013 at 15:8
5
macos Ventura 13.4 (22F66)
GNU Emacs 28.2 (build 1, x86_64-apple-darwin22.4.0, NS appkit-2299.50 Version 13.3.1 (a) (Build 22E772610a)) of 2023-05-31
org-mode 9.5.5
installed using homebrew emacs-p...
Hanford asked 2/6, 2023 at 8:17
5
Solved
When I enter my password for superuser privileges or to log in to my Linux box, if I enter it correctly, it returns immediately, granting me access. However, if I make some typo, there is a long wa...
Aleciaaleck asked 6/2, 2012 at 16:23
2
Solved
I have a problem generating the same ciphertext in JavaScript as provided in a third party PHP server. The server side uses a simple one-liner to generate a key, but I can't find a way to do the sa...
Gladi asked 13/7, 2017 at 13:47
4
JWTs have 3 parts:
HEADER:ALGORITHM & TOKEN TYPE
PAYLOAD:DATA
SIGNATURE TO BE VERIFIED WITH THE SECRET KEY
Is it possible to encrypt the payload? Following is my token's payload:
{
"iss&...
Flashboard asked 7/12, 2015 at 15:8
6
I want to set up a headless Linux (Debian Wheezy) PC with whole disk encryption, with the ability to unlock the disk either with a USB drive, or by entering a passphrase by keyboard. My start...
Adios asked 31/10, 2013 at 18:21
3
Solved
I'm trying to implement encrypt/decrypt functions using aes-128-gcm as provided by node crypto. From my understanding, gcm encrypts the ciphertext but also hashes it and provides this as an 'authen...
Contaminate asked 21/12, 2016 at 15:58
7
Solved
I have the following code which I would like to see as a oneliner. However, since I am very new to C#, I currently have no clue on how to do this...
Code:
static string ROT13 (string input)
{
if...
Lever asked 11/9, 2013 at 10:46
5
I have the following byte array that I would like to obtain hex format in order to decrypt an encrypted string using aes-256-ecb. (PowerShell uses AES encryption if you specify key argument in Conv...
Winebibber asked 19/9, 2017 at 13:13
3
Solved
I'm only asking this because I have read many posts for 2 days now about crypto AES encryption, and just when I thought I was getting it, I realized I wasn't getting it at all.
This post is the c...
Wellknit asked 2/1, 2017 at 20:26
3
Solved
I am using following functions to encrypt/decrypt strings in Node.js:
var crypto = require('crypto');
var algorithm = 'aes-256-ctr';
function encrypt(text) {
var cipher = crypto.createCipher(algor...
Nakisha asked 24/2, 2020 at 3:24
8
Solved
I want to use encryption algorithm available in .Net Security namespace, however I am trying to understand how to generate the key, for example AES algorithm needs 256 bits, that 16 bytes key, and ...
Mathewmathews asked 23/3, 2010 at 20:38
4
Is there any way (in built or add-on) to encrypt individual files in a repository, accessible by limited people. Files when checked in by those folks will auto encrypt and decrypt when checked out....
Fionafionna asked 18/1, 2018 at 21:38
3
Solved
I have access to
config.action_dispatch.encrypted_cookie_salt
config.action_dispatch.encrypted_signed_cookie_salt
secrets.secret_key_base
the full cookie string (including --)
I see ways to do ...
Reactant asked 4/1, 2017 at 22:19
3
Solved
I am trying to decrypt PGP encrypted string using the BouncyCastle PGP SDK.
I have tried several approaches and in each case I get a following error at the beginning of the process (exact place sh...
Hallucinatory asked 6/11, 2017 at 10:40
6
Solved
I'm using a string Encryption/Decryption class similar to the one provided here as a solution.
This worked well for me in .Net 5.
Now I wanted to update my project to .Net 6.
When using .Net 6, the...
Byrann asked 10/11, 2021 at 9:53
2
I need to create HmacSHA256 from a string with a private key...
I use react-native-crypto-js but I cant use it's HmacSHA256 method,
it keeps getting me "undefined function" error, here is my code:
...
Microcyte asked 6/8, 2019 at 19:22
3
I am trying to do a simple AES encryption in Java, using Java Cryto, that can then be decrypted in ObjectiveC, using OpenSSL.
as I am not doing the ObjectiveC side, I want to make sure it works, u...
Kaufman asked 24/3, 2014 at 13:25
12
Solved
The common location where SharedPreferences are stored in Android apps is:
/data/data/<package name>/shared_prefs/<filename.xml>
User with root privileges can navigate to this locati...
Mayo asked 10/5, 2015 at 7:19
© 2022 - 2024 — McMap. All rights reserved.