package brr

  1. Overview
  2. Docs
On This Page
  1. Properties
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Crypto_algo.Rsa_pss_paramsSource

RSA-PSS parameters.

Sourcetype t

The type for RsaPssParams objects.

Sourceval v : ?name:Jstr.t -> salt_length:int -> unit -> algo

v ~name ~salt_length is an signature parameter object with given properties. name defaults to "RSA-PSS".

Sourceval of_algo : algo -> t

of_algo a is an unsafe conversion from a.

Properties

Sourceval name : t -> Jstr.t

name a is the algorithm to use.

Sourceval salt_length : t -> int

salt_length a is the byte length of the name of the random salt to use.