Giter Site home page Giter Site logo

Examples? about block-ciphers HOT 4 CLOSED

rustcrypto avatar rustcrypto commented on June 12, 2024
Examples?

from block-ciphers.

Comments (4)

newpavlov avatar newpavlov commented on June 12, 2024

Sorry for the late reply!

I can't work on improving documentation right now, but I hope I'll be able to do it on the next weekend. Can you share more information about your use-case? I assume you want to use blowfish with block mode? In that case take a look at block-modes crate, currently it's being re-worked, but v0.1.0 should be usable. Small (unckecked) example:

let key = b"01234567";
let iv = b"01234567";
let mut msg = b"hello";
let msg_len = msg.len();

let mut cipher = MyCipher::new_var(key, iv).unwrap();
// buffer must have enough space for message+padding
let mut buffer = [0u8; 32];
buffer[..msg_len].copy_from_slice(msg);
cipher.encrypt(&mut buffer, msg_len).unwrap();

let mut cipher = MyCipher::new_var(key, iv).unwrap();
let decrypted_msg = cipher.decrypt(&mut buffer).unwrap();

from block-ciphers.

newpavlov avatar newpavlov commented on June 12, 2024

I've added an example to the readme. I think it will be a good starting point. Feel free to open additional issues/PRs if you'll have ideas on how to improve docs!

from block-ciphers.

edsky avatar edsky commented on June 12, 2024

Cannot use the demo above

from block-ciphers.

newpavlov avatar newpavlov commented on June 12, 2024

@edsky
The example is fixed now.

from block-ciphers.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.