mirror of
https://github.com/hashicorp/vault.git
synced 2025-11-22 03:01:10 +01:00
* Switch mongodb driver to mongo-driver * Tidy mod * Make writeConcern private * Implement review feedback * Add retry functionality * Added backoff time * go mod vendor * Fix failing test * goimport
28 lines
848 B
Markdown
28 lines
848 B
Markdown
[](https://godoc.org/github.com/xdg/stringprep)
|
||
[](https://travis-ci.org/xdg/stringprep)
|
||
|
||
# stringprep – Go implementation of RFC-3454 stringprep and RFC-4013 SASLprep
|
||
|
||
## Synopsis
|
||
|
||
```
|
||
import "github.com/xdg/stringprep"
|
||
|
||
prepped := stringprep.SASLprep.Prepare("TrustNô1")
|
||
|
||
```
|
||
|
||
## Description
|
||
|
||
This library provides an implementation of the stringprep algorithm
|
||
(RFC-3454) in Go, including all data tables.
|
||
|
||
A pre-built SASLprep (RFC-4013) profile is provided as well.
|
||
|
||
## Copyright and License
|
||
|
||
Copyright 2018 by David A. Golden. All rights reserved.
|
||
|
||
Licensed under the Apache License, Version 2.0 (the "License"). You may
|
||
obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
|