mirror of
https://github.com/Luzifer/cloudkeys-go.git
synced 2024-11-10 07:00:08 +00:00
Knut Ahlers
a1df72edc5
commitf0db1ff1f8
Author: Knut Ahlers <knut@ahlers.me> Date: Sun Dec 24 12:19:56 2017 +0100 Mark option as deprecated Signed-off-by: Knut Ahlers <knut@ahlers.me> commit9891df2a16
Author: Knut Ahlers <knut@ahlers.me> Date: Sun Dec 24 12:11:56 2017 +0100 Fix: Typo Signed-off-by: Knut Ahlers <knut@ahlers.me> commit836006de64
Author: Knut Ahlers <knut@ahlers.me> Date: Sun Dec 24 12:04:20 2017 +0100 Add new dependencies Signed-off-by: Knut Ahlers <knut@ahlers.me> commitd64fee60c8
Author: Knut Ahlers <knut@ahlers.me> Date: Sun Dec 24 11:55:52 2017 +0100 Replace insecure password hashing Prior this commit passwords were hashed with a static salt and using the SHA1 hashing function. This could lead to passwords being attackable in case someone gets access to the raw data stored inside the database. This commit introduces password hashing using bcrypt hashing function which addresses this issue. Old passwords are not automatically re-hashed as they are unknown. Replacing the old password scheme is not that easy and needs #10 to be solved. Therefore the old hashing scheme is kept for compatibility reason. Signed-off-by: Knut Ahlers <knut@ahlers.me> Signed-off-by: Knut Ahlers <knut@ahlers.me> closes #14 closes #15
50 lines
1.5 KiB
Go
50 lines
1.5 KiB
Go
// Copyright 2015 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package pkcs12
|
|
|
|
import (
|
|
"errors"
|
|
"unicode/utf16"
|
|
)
|
|
|
|
// bmpString returns s encoded in UCS-2 with a zero terminator.
|
|
func bmpString(s string) ([]byte, error) {
|
|
// References:
|
|
// https://tools.ietf.org/html/rfc7292#appendix-B.1
|
|
// https://en.wikipedia.org/wiki/Plane_(Unicode)#Basic_Multilingual_Plane
|
|
// - non-BMP characters are encoded in UTF 16 by using a surrogate pair of 16-bit codes
|
|
// EncodeRune returns 0xfffd if the rune does not need special encoding
|
|
// - the above RFC provides the info that BMPStrings are NULL terminated.
|
|
|
|
ret := make([]byte, 0, 2*len(s)+2)
|
|
|
|
for _, r := range s {
|
|
if t, _ := utf16.EncodeRune(r); t != 0xfffd {
|
|
return nil, errors.New("pkcs12: string contains characters that cannot be encoded in UCS-2")
|
|
}
|
|
ret = append(ret, byte(r/256), byte(r%256))
|
|
}
|
|
|
|
return append(ret, 0, 0), nil
|
|
}
|
|
|
|
func decodeBMPString(bmpString []byte) (string, error) {
|
|
if len(bmpString)%2 != 0 {
|
|
return "", errors.New("pkcs12: odd-length BMP string")
|
|
}
|
|
|
|
// strip terminator if present
|
|
if l := len(bmpString); l >= 2 && bmpString[l-1] == 0 && bmpString[l-2] == 0 {
|
|
bmpString = bmpString[:l-2]
|
|
}
|
|
|
|
s := make([]uint16, 0, len(bmpString)/2)
|
|
for len(bmpString) > 0 {
|
|
s = append(s, uint16(bmpString[0])<<8+uint16(bmpString[1]))
|
|
bmpString = bmpString[2:]
|
|
}
|
|
|
|
return string(utf16.Decode(s)), nil
|
|
}
|