ripemd

RIPE Message Digest

  1. ripemd
  2. Documentation
    1. RIPE 128 API
      1. Usage
      2. Constants
      3. init
      4. update
      5. raw-update
      6. final
    2. RIPE 128 Primitive
      1. Usage
      2. ripemd128-primitive
    3. RIPE 160 API
      1. Usage
      2. Constants
      3. init
      4. update
      5. raw-update
      6. final
    4. RIPE 160 Primitive
      1. Usage
      2. ripemd160-primitive
  3. Usage
  4. Examples
  5. Notes
  6. Requirements
  7. Author
  8. Repository
  9. Version history
  10. License

Documentation

An implementation of the RIPE cryptographic hash function.

See message-digest-primitive for more information.

RIPE 128 API

Component export

Usage

(import ripemd128-api)

Constants

name
algorithm name ; symbol
version
algorithm version ; string
context-size
context byte length ; fixnum
digest-length
final byte length ; fixnum
block-length
buffer byte length ; fixnum

Note that block-length is informational only.

init

[procedure] (init CTX)

Initializes a RIPEMD128 CTX, with at least context-size byte size.

update

[procedure] (update CTX OBJ LEN)

Accumulate LEN bytes from the Scheme OBJ into CTX.

raw-update

[procedure] (raw-update CTX PTR LEN)

Accumulate LEN bytes from the byte PTR into CTX.

final

[procedure] (final CTX OBJ)

Finalize the CTX into a Scheme OBJ with at least digest-length byte size. The target is usually a blob, u8vector, or string.

RIPE 128 Primitive

Packaged export

Usage

(import ripemd128-primitive)

ripemd128-primitive

[procedure] (ripemd128-primitive) -> message-digest-primitive

Returns the 128-bit RIPE message-digest-primitive object.

RIPE 160 API

Component export

Usage

(import ripemd160-api)

Constants

name
algorithm name ; symbol
version
algorithm version ; string
context-size
context byte length ; fixnum
digest-length
final byte length ; fixnum
block-length
buffer byte length ; fixnum

Note that block-length is informational only.

init

[procedure] (init CTX)

Initializes a RIPEMD-160 CTX, with at least context-size byte size.

update

[procedure] (update CTX OBJ LEN)

Accumulate LEN bytes from the Scheme OBJ into CTX.

raw-update

[procedure] (raw-update CTX PTR LEN)

Accumulate LEN bytes from the byte PTR into CTX.

final

[procedure] (final CTX OBJ)

Finalize the CTX into a Scheme OBJ with at least digest-length byte size. The target is usually a blob, u8vector, or string.

RIPE 160 Primitive

Packaged export

Usage

(import ripemd160-primitive)

ripemd160-primitive

[procedure] (ripemd160-primitive) -> message-digest-primitive

Returns the 160-bit RIPE message-digest-primitive object.

Usage

(import ripemd)

Examples

(import ripemd160-primitive message-digest-byte-vector)

(message-digest-string (ripemd160-primitive) "abc")
;=> "8eb208f7e05d987a9b044a8e98c6b087f15a0bfc"

Notes

Requirements

message-digest-primitive

Author

Kon Lovett

Repository

This egg is hosted on the CHICKEN Subversion repository:

https://anonymous@code.call-cc.org/svn/chicken-eggs/release/5/ripemd

If you want to check out the source code repository of this egg and you are not familiar with Subversion, see this page.

Version history

2.1.0
Split into api & primitive modules.
2.0.0
CHICKEN 5 release.
1.3.0
Add types.
1.2.0
Add raw-update.
1.1.0
Add block-length.
1.0.3
Use release 3 of message-digest.
1.0.2
Added identifier for message-digest-primitive.
1.0.1
1.0.0
From the Chicken 3 version. Removed digest & binary-digest procedures.

License

Copyright (C) 2010-2021 Kon Lovett. All rights reserved.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the Software), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED ASIS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.