2016-05-17 18:51:34 +00:00
|
|
|
/*
|
2017-08-22 17:25:23 +00:00
|
|
|
* Copyright 1995-2017 The OpenSSL Project Authors. All Rights Reserved.
|
1998-12-21 10:56:39 +00:00
|
|
|
*
|
2016-05-17 18:51:34 +00:00
|
|
|
* Licensed under the OpenSSL license (the "License"). You may not use
|
|
|
|
* this file except in compliance with the License. You can obtain a copy
|
|
|
|
* in the file LICENSE in the source distribution or at
|
|
|
|
* https://www.openssl.org/source/license.html
|
1998-12-21 10:56:39 +00:00
|
|
|
*/
|
|
|
|
|
2015-05-14 14:56:48 +00:00
|
|
|
#include "internal/cryptlib.h"
|
1999-04-23 22:13:45 +00:00
|
|
|
#include <openssl/bn.h>
|
|
|
|
#include <openssl/rsa.h>
|
1998-12-21 10:56:39 +00:00
|
|
|
|
2000-11-06 22:34:17 +00:00
|
|
|
int RSA_padding_add_none(unsigned char *to, int tlen,
|
2015-01-22 03:40:55 +00:00
|
|
|
const unsigned char *from, int flen)
|
|
|
|
{
|
|
|
|
if (flen > tlen) {
|
|
|
|
RSAerr(RSA_F_RSA_PADDING_ADD_NONE, RSA_R_DATA_TOO_LARGE_FOR_KEY_SIZE);
|
2017-08-22 17:25:23 +00:00
|
|
|
return 0;
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
1999-02-21 17:39:07 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
if (flen < tlen) {
|
|
|
|
RSAerr(RSA_F_RSA_PADDING_ADD_NONE, RSA_R_DATA_TOO_SMALL_FOR_KEY_SIZE);
|
2017-08-22 17:25:23 +00:00
|
|
|
return 0;
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
1998-12-21 10:56:39 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
memcpy(to, from, (unsigned int)flen);
|
2017-08-22 17:25:23 +00:00
|
|
|
return 1;
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
1998-12-21 10:56:39 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
int RSA_padding_check_none(unsigned char *to, int tlen,
|
|
|
|
const unsigned char *from, int flen, int num)
|
|
|
|
{
|
1998-12-21 10:56:39 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
if (flen > tlen) {
|
|
|
|
RSAerr(RSA_F_RSA_PADDING_CHECK_NONE, RSA_R_DATA_TOO_LARGE);
|
2017-08-22 17:25:23 +00:00
|
|
|
return -1;
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
1998-12-21 10:56:39 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
memset(to, 0, tlen - flen);
|
|
|
|
memcpy(to + tlen - flen, from, flen);
|
2017-08-22 17:25:23 +00:00
|
|
|
return tlen;
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|