An open API service indexing awesome lists of open source software.

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.

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]