|
1 |
| -/* digest_cng.c |
2 |
| -* Author: Pragma Systems, Inc. <www.pragmasys.com> |
3 |
| -* Contribution by Pragma Systems, Inc. for Microsoft openssh win32 port |
4 |
| -* Copyright (c) 2011, 2015 Pragma Systems, Inc. |
5 |
| -* All rights reserved |
6 |
| -* |
7 |
| -* Common library for Windows Console Screen IO. |
8 |
| -* Contains Windows console related definition so that emulation code can draw |
9 |
| -* on Windows console screen surface. |
10 |
| -* |
11 |
| -* Redistribution and use in source and binary forms, with or without |
12 |
| -* modification, are permitted provided that the following conditions are met: |
13 |
| -* |
14 |
| -* 1. Redistributions of source code must retain the above copyright notice. |
15 |
| -* 2. Binaries produced provide no direct or implied warranties or any |
16 |
| -* guarantee of performance or suitability. |
17 |
| -*/ |
| 1 | +/* |
| 2 | + * Author: Microsoft Corp. |
| 3 | + * |
| 4 | + * Copyright (c) 2015 Microsoft Corp. |
| 5 | + * All rights reserved |
| 6 | + * |
| 7 | + * Microsoft openssh win32 port |
| 8 | + * |
| 9 | + * Redistribution and use in source and binary forms, with or without |
| 10 | + * modification, are permitted provided that the following conditions |
| 11 | + * are met: |
| 12 | + * |
| 13 | + * 1. Redistributions of source code must retain the above copyright |
| 14 | + * notice, this list of conditions and the following disclaimer. |
| 15 | + * 2. Redistributions in binary form must reproduce the above copyright |
| 16 | + * notice, this list of conditions and the following disclaimer in the |
| 17 | + * documentation and/or other materials provided with the distribution. |
| 18 | + * |
| 19 | + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 20 | + * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 21 | + * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 22 | + * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 23 | + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 24 | + * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 25 | + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 26 | + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 27 | + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 28 | + * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 | + */ |
| 30 | +/* cng_digest.c |
| 31 | + * |
| 32 | + * Openssh digests implemented using Microsoft Crypto Next Generation (CNG). |
| 33 | + * |
| 34 | + */ |
18 | 35 |
|
19 | 36 | typedef unsigned int u_int;
|
20 | 37 | typedef unsigned char u_char;
|
|
0 commit comments