Skip to main content
Filter by
Sorted by
Tagged with
-6 votes
0 answers
46 views

I'm doing a lab on information security. I can't decrypt the text. I started the work with a literal logical selection: I assumed that each letter in ascending order is a specific letter in the ...
Роман Сысоев's user avatar
0 votes
1 answer
69 views

For my Azure App Service I have Minimum Inbound TLS Cipher Suite set to TLS_RSA_WITH_AES_128_CBC_SHA. For my App Service it is: I know that I can change it manually via App service -> ...
Michu93's user avatar
  • 5,869
Advice
0 votes
0 replies
74 views

(If you want to skip to the part I ask the question, scroll down to the last section with the heading "Concrete question".) I’m working on a home lab / learning project and would appreciate ...
Pandofla's user avatar
0 votes
0 answers
25 views

Attempting to decrypt a large binary file created with openssl fails regardless of the amount of OS memory available. Tried using the openssl -stream option but yet it fails Here is the memory info :- ...
Aditya Singh's user avatar
0 votes
0 answers
57 views

I’m using React Native with Expo SDK 54, and I have an API client built with Axios. All my normal JSON requests are encrypted before being sent to a .NET 6 backend. When I send a normal JSON body, my ...
ekod27's user avatar
  • 1
Advice
0 votes
1 replies
91 views

I'm trying to find a secure way to store token for my cli application. In the app I take the token from ms entra id and I want to store this token in user computer so that user can use it again until ...
Jantoma21's user avatar
  • 495
0 votes
1 answer
157 views

I'm trying to write a java program that encrypts and decrypts a byte array of text based on a password, but when decrypting, it returns an error Error message: Exception in thread "main" ...
Lucy's user avatar
  • 83
Advice
0 votes
1 replies
89 views

I want to encrypt the hls like this: each segment with different IV (random string) #EXTM3U #EXT-X-VERSION:3 #EXT-X-MEDIA-SEQUENCE:0 #EXT-X-ALLOW-CACHE:YES #EXT-X-TARGETDURATION:11 #EXT-X-KEY:METHOD=...
LF-DevJourney's user avatar
0 votes
0 answers
108 views

I’m using Spring Authorization Server 1.4.3 to build an authentication center. I’ve extended the authorization server to support the password grant type, so clients can obtain access tokens via the /...
JacobChan's user avatar
  • 181
0 votes
1 answer
90 views

I’m seeking clarification about storing custom data—specifically a product serial number—under the Windows Uninstall registry key created by WiX Toolset. When we install a WiX-based bundle or MSI, it ...
Annapurna somarouthu's user avatar
0 votes
0 answers
131 views

I’m working on a Node.js backend that generates a signed URL for uploading files to AWS S3 via CloudFront. However, when I hit the signed URL endpoint from curl, I always get the following response: {&...
Koperumsozhan VR's user avatar
1 vote
1 answer
150 views

I am unable to determine what is causing the exception being thrown ("invalid padding bytes"). From trying to find examples of the same issue, this seems to mostly be using the incorrect key ...
Dont worry about it's user avatar
1 vote
0 answers
78 views

For FIPS mode, I added ClientSignatureAlgorithm in opensslcnf.txt. This change was done for FIPS mode using the crypto-policies package. The support ciphers for ClientSignatureAlgorithms are same as ...
Akshit Soneji's user avatar
0 votes
2 answers
194 views

I want to find out if the 2 methods shown below achieve the same level of entropy. For this first secure method, a 32 byte / 256 bit key and a 12 byte / 96 bit nonce are generated using the JavaScript ...
suchislife's user avatar
  • 5,034
1 vote
1 answer
78 views

We are trying to make a soap request to a specific remote web service (https://example.com) from two server 2016 machines with c# client. Server A can get response. But server B can't. Server A and B ...
un1nvited's user avatar
4 votes
2 answers
194 views

I am using java built-in SunEC 21 security provider to do X25519 test cases and all work but one. I am using the same logic for every test just different inputs. When I use the inputs: Public key: ...
whynotjava's user avatar
0 votes
1 answer
145 views

The server-side application I'm working on stores structured data in a single large file that is continuously encrypted using the ChaCha20 stream cipher. I want to modify parts of the file without ...
jeha's user avatar
  • 69
0 votes
1 answer
177 views

I need to encrypt strings using a public key contained in an X509 certificate using Delphi 10.3 and OpenSSL. The certificate is already loaded in memory using the BIO routines: var ptrX509: pX509; ...
alvaroc's user avatar
  • 481
1 vote
1 answer
49 views

I figured out how to decrypt fields class _Decrypt(Function): def __init__(self, term: Any, key, alias: str | None = None) -> None: super().__init__("pgp_sym_decrypt", term, ...
london's user avatar
  • 11
1 vote
0 answers
113 views

I’m trying to decrypt AES-encrypted data inside a Logic App Standard Inline C# action, but the code that works fine in a function app fails inside Logic Apps. Problem The AES key is stored in Azure ...
Lilan Sameera's user avatar
2 votes
1 answer
139 views

I’m working on a Django project with GeoDjango models that store user location data (e.g., PointField, LineStringField). Because location data is highly sensitive, I want to ensure it’s secured (?...
user26535132's user avatar
-1 votes
1 answer
103 views

I'm having some trouble to decrypt ciphertext that was added to my logs using Rails 7.1.5.1 I recently added the Rails Encryption and made the upgrade to Rails 7 and now I need to decrypt logs that I ...
Caio Felipe Motta Ladeia's user avatar
0 votes
2 answers
118 views

I am trying to build a full-disk encryption scheme in ArchLinux. I found that GRUB cannot pass header parameters, so I think I need to write a custom hook script to guide the LUKS header and key file. ...
akuya's user avatar
  • 1
0 votes
0 answers
42 views

I am making a minimal TLS 1.3/HTTPS server in Java using only Sockets. I have already created a ClientHello parser and a ServerHello. When testing with OpenSSL the ServerHello is accepted, but when ...
whynotjava's user avatar
1 vote
0 answers
241 views

A brief context: in mexico there is the so called "electronic invoice". The IRS equivalent, emits a certificate/key pair (.cer, .key) in DER format, named Digital Sign Certificate to each ...
alvaroc's user avatar
  • 481
0 votes
0 answers
61 views

I'm building a Flutter app that needs to send user data (like name and street) to a Node.js backend server. Currently, the data is sent via URL like this: http://192.168.1.126:8080/save?name=toto&...
totoskiller's user avatar
0 votes
0 answers
80 views

My customer wants to encrypt sensitive data (subscriberkey) in email urls. The url points to external webpages. I guess we could use EncryptSymmetric if it wasn't so that the subscriberkey is added ...
Tove's user avatar
  • 75
0 votes
0 answers
70 views

Background I’m implementing Asynchronous Distributed Key Generation (ADKG) over secp256k1 so that N nodes collectively hold a threshold private key. After DKG each node has a secret share. To sign an ...
Shubham Gupta's user avatar
0 votes
0 answers
102 views

I used this code for open encrypted .xlsx files and it's work. path_to_my_file = r'filename.xlsx' passwd = 'pwd' decrypted_workbook = io.BytesIO() with open(path_to_my_file , 'rb') as file: ...
Ivan Ganyushkin's user avatar
1 vote
0 answers
132 views

I am building an application for a Nordic NRF5240 with Zephyr. In my security code I am attempting to derive a session key with the following function: int derive_session_key(const uint8_t *...
Engineer999's user avatar
  • 4,159
2 votes
0 answers
110 views

I am developing an application which uses Zephyr. I am trying to encrypt plaintext into ciphertext using AES-CCM encryption with my function as below. No matter what, psa_crypto_init() fails with ...
Engineer999's user avatar
  • 4,159
0 votes
0 answers
137 views

I am trying to encrypt a string using jose-jwt library with JweEncryption.A128CBC_HS256 It encrypted the string but failed in decode. My code: using Jose; using System.Text; public class MyProgram { ...
Amritpal Singh's user avatar
2 votes
1 answer
126 views

I'm porting an app from .NET framework to .NET and have notice some difference in behavior after the conversion. Inside a library that I use (not written by me) this piece of code will behave ...
tigrou's user avatar
  • 4,596
0 votes
0 answers
49 views

I am having a lot of confusion because ZCASH has so many crates and libraries, and I am unsure which to use because I am thinking of making a new but wasm compatible crate that I can build and use in ...
artistAhmed's user avatar
0 votes
0 answers
123 views

When I try to run the below function: import polars as pl from polars_encryption import encrypt, decrypt def crypt(csv_file: str, delim: str, password: str, output_file: str): """ ...
James McIntyre's user avatar
1 vote
1 answer
135 views

I am doing a case study on Mirai, and I am stuck on the XOR encryption/decryption. From the source code, I copied the toggle_obf function and I tried several ways to reverse the "\x22\x35" ...
Ant's user avatar
  • 13
0 votes
0 answers
92 views

Here is the class that am using ,based on the flow that I have ,the validation always fails and return false in the line boolean isValid = signature.verify(signatureBytes); LOG.info("Signature ...
Karthik's user avatar
  • 381
2 votes
1 answer
273 views

We have a target Java codebase responsible for decrypting an incoming payload. The payload is being encrypted within a .NET Core isolated Azure Function before being sent to the endpoint where the ...
Ayan Panjal's user avatar
1 vote
0 answers
111 views

I am trying to create a custom workforce integration with the Shifts app within Microsoft Teams, which uses Microsoft Graph API. https://learn.microsoft.com/en-us/microsoft-365/frontline/shifts-custom-...
Man Hen Choy's user avatar
1 vote
2 answers
167 views

I’ve successfully enabled Secure Boot V2 on my ESP32 device using ESP-IDF, and everything is working fine. Now, I want to enable Flash Encryption as the next step in securing my firmware. I’m ...
mauli02k's user avatar
1 vote
1 answer
82 views

I am trying to put up a new release of a game on android that was removed from google play, basically for being grossly out of date - only supported very old android versions. So now I've updated it ...
Gord's user avatar
  • 165
0 votes
1 answer
200 views

I am using Microsoft SQL Azure (RTM) - 12.0.2000.8, where I configured the secure enclave with VBS where I am using keyvalut for creating column master key. All the operators are working fine except ...
Ashish Singhal's user avatar
-1 votes
1 answer
193 views

I'm attempting to hash passwords in VB.net, but I am having trouble. Originally, I was using sha512 in the system cryptography libraries but after some reading I found it was recommended to do key ...
Funkmasta's user avatar
0 votes
0 answers
129 views

I am doing an OTA updater for an ESP32. I am using AWS Lambda to encrypt a presigned URL that is being generated for a certain element from an S3 bucket. I am first doing an AES encryption, and then ...
Maisu's user avatar
  • 11
1 vote
0 answers
102 views

I have a simple form where users come to report who they helped, and how. It is anonymous in the fact that they do not have to login in, but they are asked to provide their name. They will make many ...
wruckie's user avatar
  • 1,821
0 votes
0 answers
93 views

We use SQLite and, more recently, the encrypted version with SQLCipher. It works well with our software, but I'm having a small problem using DB Browser for SQLCipher. This software works well, but it ...
Chris SV's user avatar
1 vote
1 answer
186 views

I am attempting to replicate the hashing the Excel does when a sheet is password-protected in Python, but am not matching even when testing on dummy inputs. From the xml file, I am seeing this: ...
cobbler_bob's user avatar
0 votes
0 answers
87 views

I am experimenting with developing rsa with flutter and nodejs. public.pem and private.pem are same for both. Both the code are working fine when run in same language. but when transmitting data over ...
Navjot Aulakh's user avatar
0 votes
0 answers
84 views

I wrote this php script to fetch a file with sftp: if (!is_writable(sys_get_temp_dir())) { mylogger("Can't write to temporary directory"); return false; } if ( (!...
Luc Laverdure's user avatar
0 votes
1 answer
259 views

I'm doing a CTF and the task is to decrypt a base64 string with a symmetric key and an IV. However, I always get an error saying ValueError: Incorrect IV length (it must be 16 bytes long). The ...
noobProgrammer's user avatar

1
2 3 4 5
744