github.com/TrueBlocks/trueblocks-core/src/apps/chifra@v0.0.0-20241022031540-b362680128f7/pkg/file/magic.go (about) 1 // Copyright 2021 The TrueBlocks Authors. All rights reserved. 2 // Use of this source code is governed by a license that can 3 // be found in the LICENSE file. 4 5 package file 6 7 const ( 8 // MagicNumber is used to check data validity 9 MagicNumber = 0xdeadbeef 10 SmallMagicNumber = uint16(0xdead) 11 )