https://github.com/bdkosher/crypt-debug-agent
Experimenting with Java agent for debugging cryptographic classes.
https://github.com/bdkosher/crypt-debug-agent
Last synced: about 21 hours ago
JSON representation
Experimenting with Java agent for debugging cryptographic classes.
- Host: GitHub
- URL: https://github.com/bdkosher/crypt-debug-agent
- Owner: bdkosher
- Created: 2016-02-09T21:21:13.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-02-09T21:32:20.000Z (over 10 years ago)
- Last Synced: 2025-02-22T20:46:35.038Z (over 1 year ago)
- Language: Java
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Cryptographic Debugging Agent
An attempt to create Java agent using [ByteBuddy](http://bytebuddy.net/) for debugging the JDK's cryptographic classes.
## Building
Assuming Maven 3 and Java 7 installed properly:
mvn clean compile assembly:single
## Running
On Windows, to run the application with the agent in place:
run {text-to-encrypt} [AES-key]
* The requried `text-to-encrypt` must have a length that is a multiple of 16 bytes.
* The optional `AES-key` must be 16-bytes in length.
To run the application without the agent:
run-noagent {text-to-encrypt} [AES-key]