Module: Mongo::Auth::StringPrep::Profiles::SASL Private

Defined in:
build/ruby-driver-v2.19/lib/mongo/auth/stringprep/profiles/sasl.rb

Overview

This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.

Note:

Only available for Ruby versions 2.2.0 and up.

Contains the mappings and prohibited lists for SASLPrep (RFC 4013).

Since:

  • 2.6.0

Constant Summary collapse

MAP_NON_ASCII_TO_SPACE =

This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.

Since:

  • 2.6.0

{
  0x00A0 => [0x0020],
  0x1680 => [0x0020],
  0x2000 => [0x0020],
  0x2001 => [0x0020],
  0x2002 => [0x0020],
  0x2003 => [0x0020],
  0x2004 => [0x0020],
  0x2005 => [0x0020],
  0x2006 => [0x0020],
  0x2007 => [0x0020],
  0x2008 => [0x0020],
  0x2009 => [0x0020],
  0x200A => [0x0020],
  0x200B => [0x0020],
  0x202F => [0x0020],
  0x205F => [0x0020],
  0x3000 => [0x0020],
}.freeze
MAPPINGS =

This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.

The mappings to use for SASL string preparation.

Since:

  • 2.6.0

[
  Tables::B1,
  MAP_NON_ASCII_TO_SPACE,
].freeze
PROHIBITED =

This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.

The prohibited character lists to use for SASL string preparation.

Since:

  • 2.6.0

[
  Tables::A1,
  Tables::C1_2,
  Tables::C2_1,
  Tables::C2_2,
  Tables::C3,
  Tables::C4,
  Tables::C5,
  Tables::C6,
  Tables::C7,
  Tables::C8,
  Tables::C9,
].freeze