mirror of
https://github.com/Luzifer/cloudkeys-go.git
synced 2024-11-09 22:50:05 +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
66 lines
1.8 KiB
Go
66 lines
1.8 KiB
Go
// Copyright 2009 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.
|
|
|
|
/*
|
|
Implementation adapted from Needham and Wheeler's paper:
|
|
http://www.cix.co.uk/~klockstone/xtea.pdf
|
|
|
|
A precalculated look up table is used during encryption/decryption for values that are based purely on the key.
|
|
*/
|
|
|
|
package xtea
|
|
|
|
// XTEA is based on 64 rounds.
|
|
const numRounds = 64
|
|
|
|
// blockToUint32 reads an 8 byte slice into two uint32s.
|
|
// The block is treated as big endian.
|
|
func blockToUint32(src []byte) (uint32, uint32) {
|
|
r0 := uint32(src[0])<<24 | uint32(src[1])<<16 | uint32(src[2])<<8 | uint32(src[3])
|
|
r1 := uint32(src[4])<<24 | uint32(src[5])<<16 | uint32(src[6])<<8 | uint32(src[7])
|
|
return r0, r1
|
|
}
|
|
|
|
// uint32ToBlock writes two uint32s into an 8 byte data block.
|
|
// Values are written as big endian.
|
|
func uint32ToBlock(v0, v1 uint32, dst []byte) {
|
|
dst[0] = byte(v0 >> 24)
|
|
dst[1] = byte(v0 >> 16)
|
|
dst[2] = byte(v0 >> 8)
|
|
dst[3] = byte(v0)
|
|
dst[4] = byte(v1 >> 24)
|
|
dst[5] = byte(v1 >> 16)
|
|
dst[6] = byte(v1 >> 8)
|
|
dst[7] = byte(v1 >> 0)
|
|
}
|
|
|
|
// encryptBlock encrypts a single 8 byte block using XTEA.
|
|
func encryptBlock(c *Cipher, dst, src []byte) {
|
|
v0, v1 := blockToUint32(src)
|
|
|
|
// Two rounds of XTEA applied per loop
|
|
for i := 0; i < numRounds; {
|
|
v0 += ((v1<<4 ^ v1>>5) + v1) ^ c.table[i]
|
|
i++
|
|
v1 += ((v0<<4 ^ v0>>5) + v0) ^ c.table[i]
|
|
i++
|
|
}
|
|
|
|
uint32ToBlock(v0, v1, dst)
|
|
}
|
|
|
|
// decryptBlock decrypt a single 8 byte block using XTEA.
|
|
func decryptBlock(c *Cipher, dst, src []byte) {
|
|
v0, v1 := blockToUint32(src)
|
|
|
|
// Two rounds of XTEA applied per loop
|
|
for i := numRounds; i > 0; {
|
|
i--
|
|
v1 -= ((v0<<4 ^ v0>>5) + v0) ^ c.table[i]
|
|
i--
|
|
v0 -= ((v1<<4 ^ v1>>5) + v1) ^ c.table[i]
|
|
}
|
|
|
|
uint32ToBlock(v0, v1, dst)
|
|
}
|